<?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 Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281414#M3507</link>
    <description>&lt;P&gt;Kudos for asking questions! This is great. The actual API URL, or at least the "base" for it, is in the `.credentials.endpoints` object in the service key data, and the URL of the authorization server, where you will (in the next task!) be making a request for an access token, is in the `.credentials.uaa` object, specifically the `.credentials.uaa.url` property &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Aug 2023 10:01:38 GMT</pubDate>
    <dc:creator>qmacro</dc:creator>
    <dc:date>2023-08-23T10:01:38Z</dc:date>
    <item>
      <title>SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281337#M3494</link>
      <description>&lt;P&gt;(Check out the &lt;A href="https://blogs.sap.com/2023/08/01/sap-developer-challenge-apis/" target="_blank" rel="noopener"&gt;SAP Developer Challenge - APIs&lt;/A&gt; blog post for everything you need to know about the challenge to which this task relates!)&lt;/P&gt;&lt;P&gt;This task follows on from the previous task and moves you one step closer in your steady journey of enlightenment, moving towards calling an API endpoint on SAP BTP.&lt;/P&gt;&lt;H2&gt;Background&lt;/H2&gt;&lt;P&gt;In the previous task, you created an instance of the SAP Cloud Management Service. Why? Because this service provides facilities to manage resources on SAP BTP, and those facilities include the APIs you've been learning about in previous tasks in this group. But merely having an instance of the service isn't going to get you far.&lt;/P&gt;&lt;P&gt;To consume a service's facilities, more is needed. In an application context, an app is bound to a service instance, and, once bound, can consume those facilities. The same goes for API calls. What's needed are a couple of things - endpoint information and credential information.&lt;/P&gt;&lt;P&gt;So. You've done step 1 of the steps introduced in the previous task. Now you're tackling step 2.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;create an instance of the SAP Cloud Management Service, with a plan that contains the appropriate scope(s) that you need &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;create a service key based on that instance&lt;/LI&gt;&lt;LI&gt;use the details in the service key to request an access token&lt;/LI&gt;&lt;LI&gt;use the access token thus obtained to authenticate a call to the API endpoint&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;Endpoint information&lt;/H3&gt;&lt;P&gt;First, you need some information on the API endpoints. This is because information you found on the SAP Business Accelerator Hub for the endpoint you're going to call:&lt;/P&gt;&lt;PRE&gt;GET /accounts/v1/directories/{directoryGUID}&lt;/PRE&gt;&lt;P&gt;only presents a relative path (/accounts/v1/directories/{directoryGUID}). For it to be a callable endpoint it needs of course to be prefixed with the rest of the URL - the scheme and fully qualified domain name, at least.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;To be precise, the http (or https) part of a URL is known as the "scheme". See the &lt;A href="https://en.wikipedia.org/wiki/List_of_URI_schemes" target="_blank" rel="noopener"&gt;List of URI schemes&lt;/A&gt; Wikipedia page for more information. And while we're in precision mode, are you wondering about the difference between URL and URI? They're not the same. URLs are a subset of URIs. A URI (Uniform Resource Identifier) is just a string that identifies a resource. A URL (Uniform Resource Locator) identifies a resource, but also allows you to locate that resource. Yes, the clue really is in the name(s) &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;H3&gt;Credential information&lt;/H3&gt;&lt;P&gt;As well as endpoint information, you also need access, in the form of authentication. What form that takes, and how it's used, is sometime service-specific. But generally there will be a requirement to provide credentials in the API call itself.&lt;/P&gt;&lt;P&gt;You've done this already in a previous task, in that you provided an API key in an "APIKey" header, when you made the call to the country date format API endpoint in &lt;A href="https://groups.community.sap.com/t5/application-development/sap-developer-challenge-apis-task-5-call-the-country-date-format/td-p/279160" target="_blank" rel="noopener"&gt;Task 5 - Call the country date format API endpoint&lt;/A&gt;&lt;/P&gt;&lt;P&gt;More commonly, the standard &lt;A href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization" target="_blank" rel="noopener"&gt;Authorization HTTP header&lt;/A&gt; is used to convey the credentials. The value for this header is usually made up of two parts, and formed like this:&lt;/P&gt;&lt;PRE&gt;Authorization: &amp;lt;auth scheme&amp;gt; &amp;lt;auth details&amp;gt;&lt;/PRE&gt;&lt;P&gt;In the bad (good?) old days, you may well have used Basic Authentication, i.e. provided a username and password, joined with a colon, and encoded in Base64. Here's an example of that:&lt;/P&gt;&lt;PRE&gt;Authorization: Basic d2VsbC1kb25lOnlvdXItY3VyaW9zaXR5LWlzLWdyZWF0IQ==&lt;/PRE&gt;&lt;P&gt;Note that encoding != encrypting, which means that this approach was somewhat insecure, in that anyone who could see the HTTP request headers could obtain those credentials. Moreover, obtaining credentials as fundamental as username and password means a world of pain if they are ever compromised.&lt;/P&gt;&lt;P&gt;This is why OAuth, which focuses on obtaining and using tokens as credentials, is a far better approach for managing the request and use of credentials. Generally, tokens are obtained up front (sometimes requiring username and password style information) and then also eventually expire (they can be refreshed using a similar but simpler approach to the original way they were obtained). Expired tokens are no use to anyone, and if a token is compromised, it can be expired a lot easier, and with far fewer side effects (on other consumers using the same credential approach) than expiring or invalidating a compromised username and password.&lt;/P&gt;&lt;P&gt;Anyway, getting back to this Authorization header, there are other more secure auth schemes that are standard and used with this header, and you'll be working towards using such a scheme in the next task.&lt;/P&gt;&lt;H3&gt;Service keys&lt;/H3&gt;&lt;P&gt;This endpoint and credential information, essential to consume a service's facilities, is provisioned in so-called "service keys", that relate to an instance of a service.&lt;/P&gt;&lt;P&gt;Creating a service key effectively brings about the creation of credentials that are then valid for use by the consumer. Once a service key has been created, it can be retrieved, and will contain the credentials, plus information on the endpoints.&lt;/P&gt;&lt;P&gt;When an app is bound to a service instance, similar information is created (this is why one can equate the term "service key" with "binding" and why different cloud platform runtimes use these terms almost interchangeably).&lt;/P&gt;&lt;H2&gt;Your task&lt;/H2&gt;&lt;P&gt;Your task, then, is to create a service key for the instance of the SAP Cloud Management Service you created in the previous task. You should use the cf CLI to do this. You'll have to give the service key a name; it doesn't really matter too much what you call it; the name "sk" will do fine for the purpose of this task, but in the end, you can choose.&lt;/P&gt;&lt;P&gt;Once you have created a service key, you should retrieve it, and take a look at the information, which will be in JSON. You'll need to compose a value (to send to the hash service) based on some of the property names in this JSON data.&lt;/P&gt;&lt;P&gt;That value should be a sorted list of the endpoint property names (not their values), separated by commas. To be clear, these endpoint property names are the keys of the key/value pairs inside the credentials.endpoints node, and they all end in _url.&lt;/P&gt;&lt;P&gt;Once you have composed that value, you should hash it and share as a new reply to this discussion thread, as always, and as described in &lt;A href="https://groups.community.sap.com/t5/application-development/sap-developer-challenge-apis-task-0-learn-to-share-your-task/m-p/276058" target="_blank" rel="noopener"&gt;Task 0&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Oh, and while it's not part of this task's requirements, you might as well save the JSON in in a file, too, because you're going to need it again in the next task!&lt;/P&gt;&lt;H2&gt;Hints and tips&lt;/H2&gt;&lt;P&gt;You're strongly encouraged to use the cf CLI for this task. This is for the usual obvious reasons, which are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;the command line is an extremely powerful and flexible environment&lt;/LI&gt;&lt;LI&gt;using and combining tools in a command line (shell) context is the ultimate in power and flexibility&lt;/LI&gt;&lt;LI&gt;you can script usage of such tools, embracing the facilities of the command line to build automation&lt;/LI&gt;&lt;LI&gt;it helps you get closer to the metal, to explore the details of the services and runtimes you're consuming&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If, however, you do wish to use the GUI, in the form of the SAP BTP Cockpit, then go ahead. The cockpit, or any GUI for that matter, is great for one-off and occasional tasks, but it's no match for the power of the command line. You may wish to read the blog post &lt;A href="https://blogs.sap.com/2022/12/12/managing-resources-on-sap-btp-what-tool-do-i-choose/" target="_blank" rel="noopener"&gt;Managing resources on SAP BTP – what tool do I choose?&lt;/A&gt; which touches on this topic.&lt;/P&gt;&lt;P&gt;If you're using the cf CLI, you'll want to avail yourself of the commands within the "Services integration" section.&lt;/P&gt;&lt;PRE&gt;Services integration:
  marketplace,m        create-user-provided-service,cups
  services,s           update-user-provided-service,uups
  create-service,cs    create-service-key,csk
  update-service       delete-service-key,dsk
  delete-service,ds    service-keys,sk  service              service-key
  bind-service,bs      bind-route-service,brs
  unbind-service,us    unbind-route-service,urs&lt;/PRE&gt;&lt;P&gt;Note that once you've created your service key, and are looking at its output with:&lt;/P&gt;&lt;PRE&gt;cf service-key &amp;lt;service-instance&amp;gt; &amp;lt;service-key&amp;gt;&lt;/PRE&gt;&lt;P&gt;you'll notice that the output is JSON. Great! You can parse it and programatically generate the value you need to send to the hash service for your task reply.&lt;/P&gt;&lt;P&gt;However, note that the command is not entirely well-behaved, emitting "helpful" information just before the JSON itself. This is ultimately against the spirit of the UNIX command line philosophy. Here's an example of the output of such a command (some of the properties in the JSON have been removed for brevity):&lt;/P&gt;&lt;PRE&gt;Getting key cis-central-sk for service instance cis-central as dj.adams@sap.com...

{
  "credentials": {
    "endpoints": "..."
    "grant_type": "user_token",
    "sap.cloud.service": "com.sap.core.commercial.service.central",
    "uaa": {
      "uaadomain": "authentication.eu10.hana.ondemand.com",
      "xsappname": "ut-f86082c9-7fbf-4e1e-8310-f5d018dab542-clone!b254751|cis-central!b42",
      "xsmasterappname": "cis-central!b42",
      "zoneid": "7da58aab-6c60-4492-a95b-b1ed3139e242"
    }
  }
}&lt;/PRE&gt;&lt;P&gt;The first two lines ("Getting key ...", and the empty line) are not JSON. This means you will have to clean up the output of the command before processing it as JSON (and saving it to a file).&lt;/P&gt;&lt;P&gt;Note that the value of the endpoints property in the above output example is given as "..." - this is just for brevity in illustration; the value is in fact an object, containing properties, the names of which should be of interest to you for this task!&lt;/P&gt;&lt;P&gt;Note also that this example output also reminds us of one of the breaking changes between version 7 and version 8 of the cf CLI that were mentioned in the previous task. It's the advent of version 8 that brought along the outermost wrapping of the data within a new credentials property. Before version 8, that node does not exist in the JSON.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 10:03:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281337#M3494</guid>
      <dc:creator>qmacro</dc:creator>
      <dc:date>2023-08-23T10:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281342#M3495</link>
      <description>&lt;P&gt;93c6abf00d0df772b95bfb04e8a707aea2d97174f8f9c5ae8932f687ad552003&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 06:52:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281342#M3495</guid>
      <dc:creator>ajmaradiaga</dc:creator>
      <dc:date>2023-08-23T06:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281348#M3496</link>
      <description>&lt;P&gt;7b7c77832cfc9ece13c674f39172075309ef1e60e803bdd398144dbb807d54ea&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 07:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281348#M3496</guid>
      <dc:creator>vladimirs_semikins</dc:creator>
      <dc:date>2023-08-23T07:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281349#M3497</link>
      <description>&lt;PRE&gt;e192b00d1f344a49cdd3c78b2b67570df5620e2b9c7d3ee879633895a1e03d2c&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Aug 2023 07:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281349#M3497</guid>
      <dc:creator>ceedee666</dc:creator>
      <dc:date>2023-08-23T07:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281354#M3498</link>
      <description>&lt;P&gt;4d02269a4ac5676b39992ad9bd617da06304339596a23cc7b39cc274047cdc7a&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 07:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281354#M3498</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2023-08-23T07:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281357#M3499</link>
      <description>&lt;P&gt;dbf8bc5b50fb7a543bd550801d49dc57cc4ec7f60d6319fb6b1e298e6aa3ad01&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 07:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281357#M3499</guid>
      <dc:creator>salilmehta01</dc:creator>
      <dc:date>2023-08-23T07:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281405#M3503</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;14&lt;/SPAN&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN class=""&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;ac&lt;/SPAN&gt;&lt;SPAN class=""&gt;34564471e7573&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN class=""&gt;53&lt;/SPAN&gt;&lt;SPAN&gt;dc&lt;/SPAN&gt;&lt;SPAN class=""&gt;835478&lt;/SPAN&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN class=""&gt;1390e139&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN class=""&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class=""&gt;03566&lt;/SPAN&gt;&lt;SPAN&gt;aece&lt;/SPAN&gt;&lt;SPAN class=""&gt;9052&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN class=""&gt;8&lt;/SPAN&gt;&lt;SPAN class=""&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;9&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN class=""&gt;6&lt;/SPAN&gt;&lt;SPAN&gt;bc&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 16:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281405#M3503</guid>
      <dc:creator>harsh_itaverma</dc:creator>
      <dc:date>2023-08-24T16:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281409#M3505</link>
      <description>&lt;P&gt;a342c637822668bb341b3cebe005d7999c370171fe367f686dca3a602fc5a1c8&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 09:43:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281409#M3505</guid>
      <dc:creator>SandipAgarwalla</dc:creator>
      <dc:date>2023-08-23T09:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281413#M3506</link>
      <description>&lt;P&gt;I have a question. In the Service Key JSON file, which url represents the Access Token URL and which url represents the actual API URL?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 09:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281413#M3506</guid>
      <dc:creator>SandipAgarwalla</dc:creator>
      <dc:date>2023-08-23T09:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281414#M3507</link>
      <description>&lt;P&gt;Kudos for asking questions! This is great. The actual API URL, or at least the "base" for it, is in the `.credentials.endpoints` object in the service key data, and the URL of the authorization server, where you will (in the next task!) be making a request for an access token, is in the `.credentials.uaa` object, specifically the `.credentials.uaa.url` property &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 10:01:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281414#M3507</guid>
      <dc:creator>qmacro</dc:creator>
      <dc:date>2023-08-23T10:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281433#M3513</link>
      <description>&lt;P&gt;090d547f847d7ad1de45ca80a4b8d7f37b6df6312e9a14220c54d6fb7e10d176&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 11:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281433#M3513</guid>
      <dc:creator>AshokEasa</dc:creator>
      <dc:date>2023-08-23T11:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281463#M3518</link>
      <description>&lt;P&gt;Regarding this point '&lt;SPAN&gt;&lt;STRONG&gt;URLs are a subset of URIs&lt;/STRONG&gt;' - I think it should be 'URIs are a subset of URLs'.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 12:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281463#M3518</guid>
      <dc:creator>PriyankaChak</dc:creator>
      <dc:date>2023-08-23T12:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281472#M3520</link>
      <description>&lt;P&gt;Why do you think that,&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/3763"&gt;@PriyankaChak&lt;/a&gt;&amp;nbsp;?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 13:17:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281472#M3520</guid>
      <dc:creator>qmacro</dc:creator>
      <dc:date>2023-08-23T13:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281480#M3522</link>
      <description>&lt;P&gt;Sorry, my bad.&amp;nbsp;The statement '&lt;STRONG&gt;URLs are a subset of URIs&lt;/STRONG&gt;&lt;SPAN&gt;' seems correct. I previously misinterpreted resource path of URL as URI.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 13:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281480#M3522</guid>
      <dc:creator>PriyankaChak</dc:creator>
      <dc:date>2023-08-23T13:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281484#M3523</link>
      <description>&lt;P&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN class=""&gt;716931&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN class=""&gt;5&lt;/SPAN&gt;&lt;SPAN class=""&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;02842&lt;/SPAN&gt;&lt;SPAN class=""&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;7&lt;/SPAN&gt;&lt;SPAN&gt;ad&lt;/SPAN&gt;&lt;SPAN class=""&gt;9&lt;/SPAN&gt;&lt;SPAN&gt;dd&lt;/SPAN&gt;&lt;SPAN class=""&gt;290151&lt;/SPAN&gt;&lt;SPAN&gt;dde&lt;/SPAN&gt;&lt;SPAN class=""&gt;7&lt;/SPAN&gt;&lt;SPAN&gt;a&lt;/SPAN&gt;&lt;SPAN class=""&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;de&lt;/SPAN&gt;&lt;SPAN class=""&gt;18754&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN class=""&gt;6741&lt;/SPAN&gt;&lt;SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class=""&gt;709&lt;/SPAN&gt;&lt;SPAN&gt;bc&lt;/SPAN&gt;&lt;SPAN class=""&gt;95&lt;/SPAN&gt;&lt;SPAN class=""&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;30287&lt;/SPAN&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN class=""&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;fe&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 13:35:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281484#M3523</guid>
      <dc:creator>bztoy</dc:creator>
      <dc:date>2023-08-23T13:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281487#M3524</link>
      <description>&lt;P&gt;you always learn new thing from DJ's article, this is fact. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I just know that http(s) is URI schemes and after read the provided link there are also 2 schemas that has the same name (chrome).&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 13:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281487#M3524</guid>
      <dc:creator>bztoy</dc:creator>
      <dc:date>2023-08-23T13:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281496#M3525</link>
      <description>&lt;P&gt;18974047f4606c79341dab5a56adbb9742bc9688a66da19bcf1be4ab1381b352&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 14:14:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281496#M3525</guid>
      <dc:creator>UweFetzer_se38</dc:creator>
      <dc:date>2023-08-23T14:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281499#M3526</link>
      <description>&lt;P&gt;CLI + Notepad++ (sorry no time for pipes, jq or Python today)&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 14:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281499#M3526</guid>
      <dc:creator>UweFetzer_se38</dc:creator>
      <dc:date>2023-08-23T14:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281501#M3527</link>
      <description>&lt;P&gt;5e4c05b2540229e4f274b31c9c4d2da06248c703f8a648f460fd8bbc0a7e6974&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 14:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281501#M3527</guid>
      <dc:creator>cdias</dc:creator>
      <dc:date>2023-08-23T14:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 9 - Create a service key for API endpoints and auth info</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281504#M3528</link>
      <description>&lt;P&gt;821dc86fef8a9a9258ee9bb7c0159d3879400185723c807cc7dfe8cba07bd4c4&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 14:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-9-create-a-service-key-for-api-endpoints/m-p/281504#M3528</guid>
      <dc:creator>PriyankaChak</dc:creator>
      <dc:date>2023-08-23T14:34:42Z</dc:date>
    </item>
  </channel>
</rss>

