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
With the new chrome versions, it will be only supporting Strict mode for cookies, i.e. SameSite=Lax we need to manually set SameSite=None if we want our APIs to work with different domains.
How it affects
With the new chrome versions, it will be only supporting Strict mode for cookies, i.e.
SameSite=Lax
we need to manually setSameSite=None
if we want our APIs to work with different domains.Ref: https://www.chromestatus.com/feature/5633521622188032
Currently, the library is not supporting
SameSite
option. This is part ofnet/http
package and should be supportedExample
Also, something to note
http.SameSiteNoneMode
constant is introduced with Golang v1.13.0 only.Expected outcome:
There should be a way to configure
SameSite
optionThe text was updated successfully, but these errors were encountered: