Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards
SOLVED

How to get refresh token in ACS

Avatar

Level 2

Hi,

 

Is it possible to get refresh token in ACS? When I made POST call based on the cURL generated in developer console, it is only providing me the access token, also is it possible to use Refresh token for Authorization or it can be only used to generate new access token?

 

Thanks! 

Topics

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

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Dharsanprakash 

 

Based on documentation, when using OAuth 2.0 Client Credentails, you only receive an access token, no refresh token is provided. You can always request a new access token using your client_ID, client secret and scope via the Adobe Developer console.

 

 

You can find more details inside here: Refreshing access tokens 

 

Let me know if you need more help!

 

Best, 

Celia

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi @Dharsanprakash 

 

Based on documentation, when using OAuth 2.0 Client Credentails, you only receive an access token, no refresh token is provided. You can always request a new access token using your client_ID, client secret and scope via the Adobe Developer console.

 

 

You can find more details inside here: Refreshing access tokens 

 

Let me know if you need more help!

 

Best, 

Celia

Avatar

Level 2

Thanks @ccg1706