Generate access tokens always returns 400: unauthorized_client
When trying to generate a bearer token for the stock api via https://ims-na1.adobelogin.com/ims/token/v3, I always get a 400 response saying:
{"error":"unauthorized_client"}
I have checked my ID and secret multiple times. I am not able to get this to work with this command:
curl -X POST 'https://ims-na1.adobelogin.com/ims/token/v3' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'client_id=32...2d&client_secret=p8...yh&grant_type=client_credentials&scope=creative_sdk'
The project is created as an OAuth Web App. My goal is to search and download (license) images from within a private app.
What am I doing wrong?
