User is lost when being sent to my app from external pages #575
Answered
by
kmjennison
slavaboiko
asked this question in
Q&A
-
Example: Somewhere on external site
My page:
SSR:
my handler:
produces:
And if I refresh the page - everything loads correctly. No idea why user is lost when coming from external pages. Tried searching PRs and Discussions - can't find anything... |
Beta Was this translation helpful? Give feedback.
Answered by
kmjennison
Nov 7, 2022
Replies: 1 comment 1 reply
-
This behavior is likely determined by your cookie's I assume you're using |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
slavaboiko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This behavior is likely determined by your cookie's
SameSite
setting:https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite#values
I assume you're using
Strict
? TryLax
and see if it changes the behavior.