Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cookies with the SameSite=None in Chrome
#3
You didn't specify the application type (http.sys, Indy, ISAPI, ASPX), anyway, IntraWeb correctly sets the cookie attributes as expected in the specs.

If you have a 3rd party (or cross-site) cookie you must have both

CookieOptions.SameSite = ssoNone
CookieOptions.Secure = True

and you must use HTTPS only. Any HTTP (not HTTPS) connection will give you this warning because a cross site cookie can't be read in an unprotected HTTP connection.

Using ssoLax or ssoStrict on a 3rd party cookie won't work.

All this is described in detail here: https://developers.google.com/search/blo...one-secure
Reply


Messages In This Thread
RE: Cookies with the SameSite=None in Chrome - by Alexandre Machado - 04-08-2024, 01:26 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)