We have this use case that, for a specific app, we must force the user to type their Username and Password at External IDP (EntraID) level almost like a “e-signature”
Our Auth0 is federated in EntraID and the users are authenticating correctly in Entra. The issue, when the application restart the authentication process, the Auth0 is doing SSO with Entra and not prompting for user’s credentials.
How can I force Auth0 to prompt to user credentials in Entra in this scenario?
Thanks
Hi @ddasil41
Welcome to the Auth0 Community!
From what you are describing there, it appears that you need to perform a Federated Logout in your specific scenario. Usually, when a user is logged out or their session is terminated, only the session with Auth0/your application will cease to continue while their other sessions (social connections/enterprise connections) would remain connected. In order to force re-authentication, you would need to perform a federated logout(if the IdP supports it) or redirect the user to the /logout
endpoint of the IdP as well.
If you have any other questions, let me know!
Kind Regards,
Nik