-
Which SDK this is regarding:
React Native Auth0 SDK -
SDK Version:
NPM = react-native-auth0
Version = 2.13.3 -
Code Snippets/Error Messages/Supporting Details/Screenshots:
Hi,
I am integrating Auth0 for Mobile apps using React Native Auth0 SDK, I did integration and all works.
But my token is not included Org params in access token once decoding it.
Code:
auth0.webAuth
.authorize({
scope: 'openid profile email offline_access',
audience: 'https://xyazzzzz.com',
})
It included org parameter only if I send AuthExternalID - called Organization ID as parameter in authorise call.
Its not possible to get organizationID without authenticating with Auth0 as my platform API’s are required access token to get list of Organizations for particular user.
auth0.webAuth
.authorize({
scope: 'openid profile email offline_access',
audience: 'https://xyazzzzz.com',
organization: organizationID,
})