We are using auth0 with multiple app (SSO)
We don’t want to call the /logout endpoint when the user log out for one application. (so keep the session)
But we would like that when the user tries to log back in, he is asked to choose between “log in with the user associated with the current Auth0 session” or “log in as a different user”. (Like some idp does)
It seems that the “login=prompt” url parameter forces the user to re-enter their credentials, and that there is no other possible value (like prompt='select_account'
)
Is there a way to achieve that ?