Does the ThirdParty recipe support SLO (Single Log...
# support-questions-legacy
e
Does the ThirdParty recipe support SLO (Single Logout)? I'm interested in both IDP initiated and SP initiated logout.
r
hey @eliasbemlo we don't support that by default. But, you can customise your way through it: - To detect idp logout, you can override the session refresh API and check if the idp session still exists by using its refresh token, and if not, revoke the current session. - To logout from the idp on SP logout, you can listen to the sign out event on the frontend, and then redirect the user to the sign out page of the idp.
e
Sounds good, thanks! 🙌