Expand my Community achievements bar.

Who Me Too'd this topic

Avatar

Level 1

Hello, 

I'm trying to receive an Access Token following the instructions here: https://developer.adobe.com/developer-console/docs/guides/authentication/JWT/

 

I've tried using PostMan with these parameters as instructed:

 

Method: POST
URLhttps://ims-na1.adobelogin.com/ims/exchange/jwt

 

Headers: 

Key Value
Content-Type application/x-www-form-urlencoded
Cache-Control no-cache 

 

Body: (checked x-www-url-form-encoded)

Key Value
client_id  <redacted>
client_secret  <redacted>
jwt_token   <redacted> - generated according to the doc

 

I've also tried using plain old cURL, this is a sample of what I've sent (note anything `< >` enclosed is redacted for sensitivity):

curl -v -H 'Content-Type: application/x-www-form-urlencoded' -H 'Cache-Control: no-cache' -d 'client_id=<redacted>&client_secret=<redacted>&jwt_token=<jwt-header>.<jwt-claims>.<signed-string>
' https://ims-na1.adobelogin.com/ims/exchange/jwt
 
But I get the same 503 response whether I use Postman or cURL. Is the service truly down or is something off in my requests? I've tried over several days and it's always the same issue.



Topics

Topics help categorize Community content and increase your ability to discover relevant content.

Who Me Too'd this topic