You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to start a discussion regarding the SameSite attribute.
currently the Cookie that is set by Divolte is without SameSite attribute, it defaults to SameSite=Lax, which is preventing the cookie being sent in a cross-site request.
Options suggested by Chrome developer tools:
Resolve this issue by updating the attributes of the cookie:
-- > Specify SameSite=None and Secure if the cookie should be sent in cross-site requests. This enables third-party use.
--> Specify SameSite=Strict or SameSite=Lax if the cookie should not be sent in cross-site requests.
is it possible to consider allowing the user to configure the SameSite behaviour ?
Hi.
I wanted to start a discussion regarding the SameSite attribute.
currently the Cookie that is set by Divolte is without SameSite attribute, it defaults to SameSite=Lax, which is preventing the cookie being sent in a cross-site request.
Options suggested by Chrome developer tools:
Resolve this issue by updating the attributes of the cookie:
-- > Specify SameSite=None and Secure if the cookie should be sent in cross-site requests. This enables third-party use.
--> Specify SameSite=Strict or SameSite=Lax if the cookie should not be sent in cross-site requests.
is it possible to consider allowing the user to configure the SameSite behaviour ?
Thank you.