sid
) included in and the Logout Tokens to coordinate session termination via back-channel communication. Different session IDs represent individual sessions of a user agent or device in your tenant. Logout Tokens identify the end-user and session to logout.
sid
) on ID and Logout Tokens.
When end-users successfully authenticate with Auth0 during login, the issues access and ID tokens. Logout tokens will be generated when a session is destroyed, such as through a logout action or session revocation. Both ID and Logout tokens contain the claims your application needs to facilitate the Back-Channel Logout workflow. To learn more about claims, read JSON Web Token Claims.
sid
to the ID token.user_id
(sub
) and the sid
along with other parameters.sid
. Then the backend can use this token to find the session associated with the identifier and terminate it as necessary.HTTP 200
for successful logout. If you receive HTTP 400
, an incorrect or misunderstood request, you can use our tips to troubleshoot. To learn more, read Configure Back-Channel Logout.sid
to Application A. To learn more, read ID Token Structure.sid
to Application B. Your application should store the session information.sid
claim) received during user login in order to retrieve them later when receiving a Back-Channel Logout token.sid
value (session ID) that the app recognizes. Tokens containing an invalid session ID (being it expired or unrecognized) must be rejected.