https://login.auth0.com/login/callback
instead of the callback URL for your own tenant, for example https://{yourDomain}/login/callback
.
This results in the SSO cookie not being set on your own tenant domain, so the next time a user authenticates, no SSO cookie will be detected, even if you configured your application to Use Auth0 instead of the Identity Provider to do Single Sign-on (legacy tenants only).https://{yourDomain}/continue
. When using Auth0’s developer keys, the session is established on a special endpoint that is generic and tenant agnostic, and calling /continue
will not find your previous session, resulting in an error./v2/logout?federated
will sign the user out of Auth0, but not out of the Social Identity Provider.prompt=none
won’t work on the /authorize endpoint. Auth0.js’ checkSession() method uses prompt=none
internally, so that won’t work either.InResponseTo
attribute or an empty AudienceRestriction
element.https://{yourDomain}/mf
. When using Auth0’s developer keys, the session is established on a special endpoint that is generic and tenant agnostic, and calling /mf
will not find your previous session, resulting in an error