Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

how to get access token using grant_type:client_credentials

Avatar

Level 1

I am trying to fetch the access token using the grant_type = client_credentials. But I am getting an error "invalid client". Can anyone help how to get the access token by using grant_type client_credentials. Do we need any permission to get the grant_type as client credentials?

Below is the snippet which i am trying to hit the token usint Python.

token_url = 'https://ims-na1.adobelogin.com/ims/token/v1'
payload = {'grant_type': 'client_credentials'}
response = requests.post(url=token_url, auth=(client_id,client_secret), data=payload)
print(response.text)

 

Please provide the solution to resolve it. Also, please let me know the validity of access_token once we generated.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Can you please try using the below request while replacing the actual client ID and client secret?

curl -i -v "https://api.omniture.com/token" -u 'YOUR_CLIENT_ID:YOUR_CLIENT_SECRET' -d "grant_type=client_credentials"

View solution in original post

6 Replies

Avatar

Correct answer by
Employee Advisor

Can you please try using the below request while replacing the actual client ID and client secret?

curl -i -v "https://api.omniture.com/token" -u 'YOUR_CLIENT_ID:YOUR_CLIENT_SECRET' -d "grant_type=client_credentials"

Avatar

Level 1
Still getting the error as {"error":"invalid_client","error_description":"The client credentials are invalid"}

Avatar

Employee Advisor

lt's likely you are entering the incorrect client ID or secret. I'd recommend that you reach out to Client Care with the details and they will let you know the reason.

Avatar

Level 1
I copied the client id and secret from the console Oauth Web. But still it is not working

Avatar

Employee Advisor

I think the access token is needed for JWT integration and not OAuth integration. Can you check? It's not possible for me to tell the exact reason without looking into the details of the integration and your setup.