Skip to main content
Community Expert
July 15, 2024
Question

Connecting Adobe ID-authorized app to Adobe Express

  • July 15, 2024
  • 0 replies
  • 102 views

I have a web app https://galeryst.com that successfully uses Adobe ID to authenticate and authorize users.  I have started looking at building an Adobe Express Add-on and need to connect to it via OAuth.  I have looked at the import-images-using-oauth sample and modified the constants in constants.js like this:

export const AUTHORIZATION_URL = "https://ims-na1.adobelogin.com/ims/authorize/v2";
export const CLIENT_ID = "**myclientidhere**"
export const SCOPE = "openid,lr_partner_apis,lr_partner_rendition_apis,offline_access,cc_libraries,creative_sdk,profile,address,AdobeID,email,cc_files";
 

 The add-on successfully logs in and my callback is called, but when I then call 

https://ims-na1.adobelogin.com/ims/token/v3 with my client secret and the code passed, I get an failure with the error  

{
error: "invalid_grant",
}

Any suggestions on how to do this?

thanks,
Michael

This topic has been closed for replies.