Skip to content

Azure AD B2C missing access_token in refreshTokenGrant #719

Discussion options

You must be logged in to vote

Thanks, I found another solution/workaround: When I add the Client ID as the first scope I also get an access token and everything works:

Scopes before:

const b2cOidcScopes = "openid offline_access profile email";

Scopes after:

const B2C_CLIENT_ID = "90c0fe63-bcf2-44d5-8fb7-b8bbc0b29dc6";  // Example value
const b2cOidcScopes = `${B2C_CLIENT_ID} openid offline_access profile email`;

Thanks for your help! Really appreciate it!

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by panva
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
IdP issue problem is on the IdP side
2 participants
Converted from issue

This discussion was converted from issue #717 on October 23, 2024 19:14.