You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These two features don't work together, because the cookie handler orchestrates them in the wrong order: it destroys the session (and the token with it) before it attempts to revoke the token, so revocation never occurs.
Need to investigate the best way to solve this.
Ideas:
Revoke refresh tokens from within the ticket or user session store
Revoke refresh tokens in the bff/logout endpoint
Consider if the SessionRevocationService (used on backchannel logout) can help.
The text was updated successfully, but these errors were encountered:
We use extensibility points in the cookie handler to do two things when sessions end:
ITicketStore
implementation) andPostConfigureApplicationCookieRevokeRefreshToken
configuration)These two features don't work together, because the cookie handler orchestrates them in the wrong order: it destroys the session (and the token with it) before it attempts to revoke the token, so revocation never occurs.
Need to investigate the best way to solve this.
Ideas:
SessionRevocationService
(used on backchannel logout) can help.The text was updated successfully, but these errors were encountered: