-
Notifications
You must be signed in to change notification settings - Fork 148
No session created when working with 0Auth Clients #250
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
Comments
Same |
So after troubleshooting for a few minutes, I found that the issue seems to be related to the missing redirectTo option in the parameters:
Adding this option fixed the issue. However, I am not sure why it was causing problems in the first place. It seems that the URL configuration was being completely ignored. |
Should this work without creating a /confirm page or it need to exists? I mean, could the /confirm page be the same as the login? |
I think it can't, but I would give it a try. Im afraid that could bring you an unexpected behavior sooner or later. |
I disabled ssr for the confirm page in nuxt.config.js and it works for me now. routeRules: {
"/confirm": { ssr: false },
}, |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days. |
This issue was closed because it has been stalled for 30 days with no activity. |
Version
@nuxtjs/supabase:v1.0.2
nuxt: v3.4.3
Reproduction Link
No link as I have downgraded the Supabase module down to 0.3.0 as per the tutorial I am following.
Steps to reproduce
What is Expected?
The user is directed to the third party OAuth, performs authentication and then redirected to the application where a session is created.
What is actually happening?
We are successfully redirected to google/github to confirm auth, however when we get redirected back our app, no session is created.
The auth is tracked in supabase and the user is added but no google authentication has been tracked in google. (As if the request was never sent)
The text was updated successfully, but these errors were encountered: