sergiodxa / remix-auth-oauth2

A OAuth2Strategy for Remix Auth
https://sergiodxa.github.io/remix-auth-oauth2/
MIT License
150 stars 56 forks source link

Missing state on session #86

Closed Fumaz closed 6 months ago

Fumaz commented 6 months ago

The state is set correctly in the browser's cookies (and decoding the cookie shows me the state is correct), but the server thinks it's not there.

sergiodxa commented 6 months ago

The error typically happens because either the session cookie was not set or the cookie was not sent from the browser (e.g. because of SameSite: Strict or the path config).

It's impossible to know exactly what's your issue without a replication repository to try it.