<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Announcing the unofficial TechEd &amp;&amp; d-code session REST API in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604662#M1862325</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm glad to announce the &lt;STRONG&gt;unofficial&lt;/STRONG&gt; session catalogue RESTful API to you! I created this based on an API that is in the development status (not for production). &lt;SPAN style="font-size: 10pt;"&gt;As a heads-up: &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Every app consuming that API should be highlighted as unofficial and not related to the TechEd &amp;amp;&amp;amp; d-code activities. Also, the final end-points (URLs) might change during finalization, but I'll keep you updated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought it's a great way for everyone to consume session data and build applications on top of that. I order to extend the provided API, I used apigee's API management cloud solution. Let me get into more detail &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://community.sap.com/1024/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Apigee's API Management&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Apigee enabled me to extend the exposed session data API. Apigee can be narrowed down to be an API proxy that allows me to trigger all sorts of actions within a lifecycle-oriented WYSIWYG editor in the browser! Obviously, it is way more than that - it allows me to run analytics, manage API users and apps, store data in the cloud and much more. You should try it out at &lt;A href="https://community.sap.com/www.apigee.com" target="test_blank"&gt;www.apigee.com&lt;/A&gt;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I created my free account and got started with it. Luckily, the apigee team provides an e-Learning class on how to build your first API proxy, which you can find &lt;A href="https://pages.apigee.com/learn-create-and-manage-apis-registration.html"&gt;here&lt;/A&gt;. I followed the class materials and created all the necessary flows, added caching and spike arrests as well as quotas to make sure that the used API in the back is not overloaded with requests in the future - during the TechEd &amp;amp;&amp;amp; d-code event. By the way, caching helps a lot to minimize response times (the backend API is quite slow). Obviously, the first request will take longer. But as soon as the information is cached, your data will arrive very fast &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://community.sap.com/1024/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to make existing the API more consume-friendly, I implemented the HATEOAS paradigm. This allows you to navigation through the data using provided URLs. For example: You could get the data for a certain session. This data will include speakers information. It has the ID as well as an URL that you can use to get the details of that certain speaker. One huge benefit is that your application will not need to load the whole data-chunk but rather get a subset of the data that is dumped out by the API in the backend. H&lt;EM&gt;ow did I implemented that you ask?&lt;/EM&gt; Apigee allows users to execute custom JavaScript code to modify the HTTP responses. Using JavaScript, I was able to access the backend response and modify the response that got send back to the client. I was really happy about how easy the usage of the JavaScript SDK is. The documentation is very useful and there are many sample codes available to get started!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End-Points (Data Structure)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The exposed data can be separated into the following three entities: &lt;STRONG&gt;Sessions, Speakers, and Schedules&lt;/STRONG&gt;. Let me start off by giving you the endpoints to get all entries per entity:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sessions Overview: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas"&gt;https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Schedules Overview: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas"&gt;https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="s1"&gt;Speakers Overview: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas"&gt;https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As already mentioned, all the detail information (e.g. speakers for a session) should be accessed via URLS (following the HATEOAS paradigm). So, as a next step, I added the functionality to look up certain entities by their IDs. You can get all the details of existing entities just like that:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Session ID 16042: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas/16042"&gt;&lt;/A&gt;&lt;A href="https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas/" target="test_blank"&gt;https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas/&lt;/A&gt;&lt;STRONG&gt;16042&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Schedule ID 43863: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas/43863"&gt;&lt;/A&gt;&lt;A href="https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas/" target="test_blank"&gt;https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas/&lt;/A&gt;&lt;STRONG&gt;43863&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="s1"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Speaker ID 1608: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas/1608"&gt;&lt;/A&gt;&lt;A href="https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas/" target="test_blank"&gt;https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas/&lt;/A&gt;&lt;STRONG&gt;1608&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From my point of view, there was one more thing missing: Search! So, I went ahead and implemented a search functionality which allows you to search certain attributes of the various entities. This way, you could for example look up all hands-on sessions, schedules that happen on a Tuesday, or all speakers that are SAP mentors. Basically, the search functionality enables you to provide a "query" that would need to be matched with the attribute values included in the search. Here's how to use the search for each entity:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sessions, e.g. all Hands-On Workshops: &lt;SPAN class="s1"&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/sessions?p=Hands-On%20Workshop%20(2hr)"&gt;&lt;/A&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/" target="test_blank"&gt;http://agraebe-test.apigee.net/v1/2014/lasvegas/search/&lt;/A&gt;&lt;STRONG&gt;sessions?p=Hands-On Workshop (2hr)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Attributes included in the search are: SESSION_TYPE, ABSTRACT, PREREQUISITES, TITLE&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Schedules, e.g. all schedules in the Palazzo Ballroom &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; &lt;SPAN class="s1"&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/schedules?p=Palazzo%20Ballroom%20D"&gt;&lt;/A&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/" target="test_blank"&gt;http://agraebe-test.apigee.net/v1/2014/lasvegas/search/&lt;/A&gt;&lt;STRONG&gt;schedules?p=Palazzo Ballroom D&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Attributes included in the search are: ROOM, START_DATE, END_DATE, MAX_SEATS&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Speakers, e.g. all speakers that are SAP mentors: &lt;SPAN class="s1"&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/speakers?p=SAP%20Mentor"&gt;&lt;/A&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/" target="test_blank"&gt;http://agraebe-test.apigee.net/v1/2014/lasvegas/search/&lt;/A&gt;&lt;STRONG&gt;speakers?p=SAP Mentor&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;UL&gt;&lt;LI&gt;Attributes included in the search are: FIRST_NAME, LAST_NAME, COMPANY, EXPERTISE, RELATIONSHIP, TITLE&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Let me know what you think!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You may have recognized that this data endpoints are related to the TechEd &amp;amp;&amp;amp; d-code in Las Vegas. The backend API provides session data for all the other events too (Berlin &amp;amp; Bangalore). I'll expose that data fairly soon too! But first, I wanted to get some feedback on the API. Is there anything you are missing? Would you be happy to use that API as it is? If so, I'll go ahead and expose all the events data and finalize my apigee API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward to get your feedback!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2014 16:48:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-10-01T16:48:25Z</dc:date>
    <item>
      <title>Announcing the unofficial TechEd &amp;&amp; d-code session REST API</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604662#M1862325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm glad to announce the &lt;STRONG&gt;unofficial&lt;/STRONG&gt; session catalogue RESTful API to you! I created this based on an API that is in the development status (not for production). &lt;SPAN style="font-size: 10pt;"&gt;As a heads-up: &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Every app consuming that API should be highlighted as unofficial and not related to the TechEd &amp;amp;&amp;amp; d-code activities. Also, the final end-points (URLs) might change during finalization, but I'll keep you updated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought it's a great way for everyone to consume session data and build applications on top of that. I order to extend the provided API, I used apigee's API management cloud solution. Let me get into more detail &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://community.sap.com/1024/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Apigee's API Management&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Apigee enabled me to extend the exposed session data API. Apigee can be narrowed down to be an API proxy that allows me to trigger all sorts of actions within a lifecycle-oriented WYSIWYG editor in the browser! Obviously, it is way more than that - it allows me to run analytics, manage API users and apps, store data in the cloud and much more. You should try it out at &lt;A href="https://community.sap.com/www.apigee.com" target="test_blank"&gt;www.apigee.com&lt;/A&gt;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I created my free account and got started with it. Luckily, the apigee team provides an e-Learning class on how to build your first API proxy, which you can find &lt;A href="https://pages.apigee.com/learn-create-and-manage-apis-registration.html"&gt;here&lt;/A&gt;. I followed the class materials and created all the necessary flows, added caching and spike arrests as well as quotas to make sure that the used API in the back is not overloaded with requests in the future - during the TechEd &amp;amp;&amp;amp; d-code event. By the way, caching helps a lot to minimize response times (the backend API is quite slow). Obviously, the first request will take longer. But as soon as the information is cached, your data will arrive very fast &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://community.sap.com/1024/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to make existing the API more consume-friendly, I implemented the HATEOAS paradigm. This allows you to navigation through the data using provided URLs. For example: You could get the data for a certain session. This data will include speakers information. It has the ID as well as an URL that you can use to get the details of that certain speaker. One huge benefit is that your application will not need to load the whole data-chunk but rather get a subset of the data that is dumped out by the API in the backend. H&lt;EM&gt;ow did I implemented that you ask?&lt;/EM&gt; Apigee allows users to execute custom JavaScript code to modify the HTTP responses. Using JavaScript, I was able to access the backend response and modify the response that got send back to the client. I was really happy about how easy the usage of the JavaScript SDK is. The documentation is very useful and there are many sample codes available to get started!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End-Points (Data Structure)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The exposed data can be separated into the following three entities: &lt;STRONG&gt;Sessions, Speakers, and Schedules&lt;/STRONG&gt;. Let me start off by giving you the endpoints to get all entries per entity:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sessions Overview: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas"&gt;https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Schedules Overview: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas"&gt;https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="s1"&gt;Speakers Overview: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas"&gt;https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As already mentioned, all the detail information (e.g. speakers for a session) should be accessed via URLS (following the HATEOAS paradigm). So, as a next step, I added the functionality to look up certain entities by their IDs. You can get all the details of existing entities just like that:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Session ID 16042: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas/16042"&gt;&lt;/A&gt;&lt;A href="https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas/" target="test_blank"&gt;https://agraebe-test.apigee.net/v1/sessions/2014/lasvegas/&lt;/A&gt;&lt;STRONG&gt;16042&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Schedule ID 43863: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas/43863"&gt;&lt;/A&gt;&lt;A href="https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas/" target="test_blank"&gt;https://agraebe-test.apigee.net/v1/schedules/2014/lasvegas/&lt;/A&gt;&lt;STRONG&gt;43863&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="s1"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Speaker ID 1608: &lt;SPAN class="s1"&gt;&lt;A href="https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas/1608"&gt;&lt;/A&gt;&lt;A href="https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas/" target="test_blank"&gt;https://agraebe-test.apigee.net/v1/speakers/2014/lasvegas/&lt;/A&gt;&lt;STRONG&gt;1608&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From my point of view, there was one more thing missing: Search! So, I went ahead and implemented a search functionality which allows you to search certain attributes of the various entities. This way, you could for example look up all hands-on sessions, schedules that happen on a Tuesday, or all speakers that are SAP mentors. Basically, the search functionality enables you to provide a "query" that would need to be matched with the attribute values included in the search. Here's how to use the search for each entity:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sessions, e.g. all Hands-On Workshops: &lt;SPAN class="s1"&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/sessions?p=Hands-On%20Workshop%20(2hr)"&gt;&lt;/A&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/" target="test_blank"&gt;http://agraebe-test.apigee.net/v1/2014/lasvegas/search/&lt;/A&gt;&lt;STRONG&gt;sessions?p=Hands-On Workshop (2hr)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Attributes included in the search are: SESSION_TYPE, ABSTRACT, PREREQUISITES, TITLE&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Schedules, e.g. all schedules in the Palazzo Ballroom &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; &lt;SPAN class="s1"&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/schedules?p=Palazzo%20Ballroom%20D"&gt;&lt;/A&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/" target="test_blank"&gt;http://agraebe-test.apigee.net/v1/2014/lasvegas/search/&lt;/A&gt;&lt;STRONG&gt;schedules?p=Palazzo Ballroom D&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="s1"&gt;Attributes included in the search are: ROOM, START_DATE, END_DATE, MAX_SEATS&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Speakers, e.g. all speakers that are SAP mentors: &lt;SPAN class="s1"&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/speakers?p=SAP%20Mentor"&gt;&lt;/A&gt;&lt;A href="http://agraebe-test.apigee.net/v1/2014/lasvegas/search/" target="test_blank"&gt;http://agraebe-test.apigee.net/v1/2014/lasvegas/search/&lt;/A&gt;&lt;STRONG&gt;speakers?p=SAP Mentor&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;UL&gt;&lt;LI&gt;Attributes included in the search are: FIRST_NAME, LAST_NAME, COMPANY, EXPERTISE, RELATIONSHIP, TITLE&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Let me know what you think!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You may have recognized that this data endpoints are related to the TechEd &amp;amp;&amp;amp; d-code in Las Vegas. The backend API provides session data for all the other events too (Berlin &amp;amp; Bangalore). I'll expose that data fairly soon too! But first, I wanted to get some feedback on the API. Is there anything you are missing? Would you be happy to use that API as it is? If so, I'll go ahead and expose all the events data and finalize my apigee API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward to get your feedback!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 16:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604662#M1862325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-01T16:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Announcing the unofficial TechEd &amp;&amp; d-code session REST API</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604663#M1862326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't get data back for any of the API - &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="hoverable hovered" style="padding: 1px 2px; background-color: #ebeef9;"&gt;&lt;SPAN class="property" style="font-weight: bold;"&gt;Server Error&lt;/SPAN&gt;: &lt;SPAN class="type-string" style="color: green;"&gt;"No data"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it still work in progress?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 23:05:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604663#M1862326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-01T23:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Announcing the unofficial TechEd &amp;&amp; d-code session REST API</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604664#M1862327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the backend API changed the structure of the JSON. Working on it right now!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 23:08:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604664#M1862327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-01T23:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Announcing the unofficial TechEd &amp;&amp; d-code session REST API</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604665#M1862328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once the response json structure is finalized, would it still change later?&lt;/P&gt;&lt;P&gt;Its ok if the URL itself changes, but if the response structure is also unstable, that makes it difficult to write an app against it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 23:11:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604665#M1862328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-01T23:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Announcing the unofficial TechEd &amp;&amp; d-code session REST API</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604666#M1862329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can ensure that my response will stay the same. I'll talk to the backend provider to make sure that their response stays the same, too. I think it's just because they are still in development.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 23:16:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604666#M1862329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-01T23:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Announcing the unofficial TechEd &amp;&amp; d-code session REST API</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604667#M1862330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool! Would be great if you can announce once the response is finalized. Would love to play around with it &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1024/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 23:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604667#M1862330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-10-01T23:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Announcing the unofficial TechEd &amp;&amp; d-code session REST API</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604668#M1862331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexander,&lt;/P&gt;&lt;P&gt;keep on going!&lt;/P&gt;&lt;P&gt;There are some out there waiting for some APIs to play around with. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/1063/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The official app is out in Appstore/Playstore, but don't trust an app you didn't made yourself!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(or do I mix it up with "charts"? &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/1063/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any chance to get it fixed?&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Oct 2014 20:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/announcing-the-unofficial-teched-d-code-session-rest-api/m-p/10604668#M1862331</guid>
      <dc:creator>CBasis</dc:creator>
      <dc:date>2014-10-18T20:10:59Z</dc:date>
    </item>
  </channel>
</rss>

