-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Hey, this might be a dumb question, but this is the first time I've used supabase and I can't get the oauth callback setup to work.
I've setup an oauth clientId / clientSecret in Github, and added https://[projectId].supabase.co/auth/v1/callback as the callback URL. I've also added the prop redirectTo={'https://myblogpage.com'} to the AuthModal component.
However, after clicking "Signin with github" in the AuthModal, and asked to allow my custom Github App, I'm redirected to that supabase URL with an accessToken and verification code appended, so far so good. Decoding the jwt accessToken also reveals my correct settings from supabase, but then the browser just says Invalid Redirect.
Am I missing something obvious here? I'm assuming supabase is supposed to direct me back to the URL specified in the redirectTo prop. Right?
