I have 2 applications, react+node and a hubspot application
i have used auth0 for sso for both the apps and registered the applications in a same tenant.
the react+node setup uses express-openid-connect in the node app for authentication
now when a user logs out from any of the application (hubspot or react), i want to invalidate the other application’s session and the underliying auth0 session as well
I was able to invalidate underlying auth0 session in express app, but still it doesnt invalidate hubspot session
and in hubspot’s case, it doesnt clear underlying auth0 session as well as react session
To invalidate the Auth0 Session Layer, your user needs to hit the /logout endpoint. Can you confirm that the log out is hitting that endpoint successfully?
Additionally, the application session needs to be invalidated (by deleting or expiring tokens). This is a bit more complex, because there is no Single Logout Feature for auth0 database connections (yet).