Social login with separate backend domain

If my frontend is at a different domain than my backend, the cookie from the 302 redirect doesn't get set. If using bearer tokens there's no opportunity to get the token from the request before the redirect occurs. Email/password works.
1 Reply
erquhart
erquhartOP3d ago
I think I need the code in the url param to survive the redirect so the exchange can happen after on the backend Okay just had to play with cookies, config that fixed for this:
advanced: {
defaultCookieAttributes: {
secure: true,
sameSite: "none",
},
},
advanced: {
defaultCookieAttributes: {
secure: true,
sameSite: "none",
},
},

Did you find this page helpful?