-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Log out completely from Auth0 #82
Comments
Also having this issue |
@linh-ebisolvn For me the issue was that since I upgraded from the |
@kleoken I only have |
Post your nuxt config perhaps? Here is mine:
If it's only on logout you should be able to open the network tab and see your app hitting the auth0 logout endpoint. Also you should be able to see on Auth0 in the Logs section or the User History. |
When calling logout you just need this |
Well tks for your help @kleoken |
@linh-ebisolvn One of the previous problems I was having was that when Nuxt redirected me to my logout redirect, I was manually redirecting to the login page before the logout api call to auth0 had time to complete therefore logging me out client side but not logging me out from Auth0. Can you confirm you can see the |
Can you show me how to reproduce the steps? Like create another logout page or use any method provided by $auth instance? |
I created a PR #86 to migrate to @nuxt/auth-next v5. In this example upgrade the logout behavior works as expected and will fix this issue. |
Is this project totally dead ? |
Having exactly the same issue as above. Has anyone found a solution for this? |
What problem does this feature solve?
After clicking log out (use $auth.logout() ) under the hood, it only clears the storage token, etc.. on the browser but not the session from auth0 server therefore it still remains logged in
What does the proposed changes look like?
Log out completely from Auth0 server
The text was updated successfully, but these errors were encountered: