Question
OAuth client_credentials
I was reviewing this video:
https://experienceleague.adobe.com/docs/acrobat-services-learn/tutorials/acrobatsign/oem/generating-an-access-token.html?lang=en
https://experienceleague.adobe.com/docs/acrobat-services-learn/tutorials/acrobatsign/oem/generating-an-access-token.html?lang=en
And I can successfully create an access token using the authorization_code flow.
(the documentation of what URL should be used for the token endpoint is very unclear. This worked for me: https://api.na3.adobesign.com/oauth/v2/token, but the video used: https://secure.na3.adobesign.com/oauth/v2/token , which throws an error)
I am wondering if adobe sign supports the client_credentials flow as that is a replacement for the Integration Key which is now deprecated.
When I try to use the client_credentials i get a
{
"error_description": "Invalid grant_type client_credentials",
"error": "invalid_request"
}
this post from several years ago:
https://community.adobe.com/t5/adobe-acrobat-sign-discussions/trying-to-use-the-echosign-api-with-oauth2/m-p/10051627
https://community.adobe.com/t5/adobe-acrobat-sign-discussions/trying-to-use-the-echosign-api-with-oauth2/m-p/10051627
indicates that adobe support recomends using the authorization code flow and just keept the the refresh token (which has a 6 month lifespan) alive.
That seems like a huge work around.
Is there any update on full OAuth support?
