How to log out of other applications (Single Log Out)
-
According to the Auth0 docs, I need to use iframes to logout of other applications that are signed into the same tenant with Single Sign On:
https://auth0.com/docs/logout/guides/logout-applicationsIs there an easy way to accomplish this with the Auth0 wordpress plugin?
I’m not seeing any hooks for “after logout” in the Auth0 WordPress extension docs such that I could change the final location after logout is complete to a page with iframes to log out other applications:
https://auth0.com/docs/cms/wordpress/extendingIt appears as though I can get in line before the Auth0 wordpress plugin grabs the wp_logout action by creating my own wp_logout action and setting a precedence of 0
add_action('wp_logout', 'myfunc',0);
but then I have to handle the redirect to Auth0 to sign out myself. Is this the way to go?
- The topic ‘How to log out of other applications (Single Log Out)’ is closed to new replies.