Is there a way to do single sign out from the Thri...
# general
d
Is there a way to do single sign out from the Thriparty IDP, once the app is logged out using signout method?
r
Yea. Depends on how the idP allows signing out. If the idP requires the user to visit a URL to sign out, then you can simply navigate the user to that URL from the frontend after calling the
signOut
function on the frontend.
If the idP allows you to make an API call to sign the user out, then you can override the signOutPOST API function on the backend (in Session.init), to make that API call
either works!
9 Views