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
Logout redirect URI is not redirecting back to the mobile app with Azure auth
I am using the below
const config = { issuer: 'https://login.microsoftonline.com/<TENANT_ID>/v2.0', clientId: CLIENT_ID, redirectUrl: redirectUrl, scopes: ['openid', 'profile', 'email', 'offline_access'], }; const logoutConfig = { idToken: ID_TOKEN, postLogoutRedirectUrl: postlogoutRedirectURL };
in Logout method:
await logout(config, logoutConfig)
The page is not redirecting back to the mobile app
@mraible @bkonkle @mooreds @calendee @mariano-formidable
The text was updated successfully, but these errors were encountered:
Here the same with Google... any solutions?
Sorry, something went wrong.
@AmarRaghav @eleversa I have the same exact problem. Has anyone figured out how to solve it? Are you guys using SAML logout?
"@AmarRaghav, please include the following additional parameter in your logout configuration: additionalParameters: { "redirect_uri": app://app.auth}
Did someone manage to fix this?
Moving discussion to #1042
No branches or pull requests
Issue
Logout redirect URI is not redirecting back to the mobile app with Azure auth
I am using the below
const config = {
issuer: 'https://login.microsoftonline.com/<TENANT_ID>/v2.0',
clientId: CLIENT_ID,
redirectUrl: redirectUrl,
scopes: ['openid', 'profile', 'email', 'offline_access'],
};
const logoutConfig = {
idToken: ID_TOKEN,
postLogoutRedirectUrl: postlogoutRedirectURL
};
in Logout method:
await logout(config, logoutConfig)
The page is not redirecting back to the mobile app
@mraible @bkonkle @mooreds @calendee
@mariano-formidable
The text was updated successfully, but these errors were encountered: