We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Actions flow, if you want to modify the accessToken using api.accessToken.addScope, the token remais the same. Action that I used as example:
exports.onExecutePostLogin = async (event, api) => { const appMetadata = event.user.app_metadata; var permissions = appMetadata?.authorization?.permissions; var requestedScopes = event.request.body.scope || event.request.query.scope; var parsedScopes = requestedScopes.split(" "); var allScopes = parsedScopes.concat(permissions); allScopes.forEach(scope => api.accessToken.addScope(scope)); };
NOTE: if you run the "same code" in Auth Pipeline > Rules, it works! 🎉
So if you inspect the token retrieved after login, the scopes remains unchanged
No response
2.2.4
18.2.0
Chrome
The text was updated successfully, but these errors were encountered:
I have the same behavior, no scopes are added even though the login flow completed successfully.
Sorry, something went wrong.
I am also facing same issue. Has anybody found a resolution?
No branches or pull requests
Checklist
Description
In the Actions flow, if you want to modify the accessToken using api.accessToken.addScope, the token remais the same. Action that I used as example:
NOTE: if you run the "same code" in Auth Pipeline > Rules, it works! 🎉
Reproduction
So if you inspect the token retrieved after login, the scopes remains unchanged
Additional context
No response
auth0-react version
2.2.4
React version
18.2.0
Which browsers have you tested in?
Chrome
The text was updated successfully, but these errors were encountered: