-
Hi everyone, a huge thanks for this awesome template it's been super helpful. I've been primarily using this template to learn how to mix Supabase with Remix, I wanted to inquire if it was possible to sign user's in with a third party such as
Any tips would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello, Thanks for your kind words :) To make it working, you have to follow the Supabase doc but I guess you did. Then, in you Supabase Dashboard, allow redirect urls And finally, take some inspiration from this branch :p main...example/github-auth You have to trigger 3rd party auth from the browser and tell Supabase Auth server where to redirect after success. Whether magic link or social provider, it all ends up in |
Beta Was this translation helpful? Give feedback.
Hello, Thanks for your kind words :)
To make it working, you have to follow the Supabase doc but I guess you did.
Then, in you Supabase Dashboard, allow redirect urls
/oauth/callback
(one per domain)And finally, take some inspiration from this branch :p main...example/github-auth
You have to trigger 3rd party auth from the browser and tell Supabase Auth server where to redirect after success.
Whether magic link or social provider, it all ends up in
/oauth/callback
.