3

I develope web app, and yesterday faced issue related with cookies. Earlier our team dealth with it just disabling Cookies without SameSite must be secure and adding XSRF-TOKEN in cookies.

I red (https://www.chromium.org/updates/same-site/test-debug) this flag was removed in Chrome 91 and now my app reboots endlessly and apears cookies error in issues. Are there any workarounds or how I can resolve this issue?

Screenshot enter image description here

deny Vice
  • 47
  • 1
  • 4

2 Answers2

1
open -a 'Google Chrome' --args --disable-features=SameSiteByDefaultCookies,CookiesWithoutSameSiteMustBeSecure

This should solve your problem temporarily.

Santosh Hegde
  • 3,420
  • 10
  • 35
  • 51
1

Since Chrome 91, the tags #same-site-by-default-cookies and #cookies-without-same-site-must-be-secure have been removed from chrome://flags. You can right-click on the Chrome shortcut, Click "Properties". Add --disable-features=SameSiteByDefaultCookies,CookiesWithoutSameSiteMustBeSecure at the end of the "Target" attribute, and then restart the browser.

Tupac
  • 2,590
  • 2
  • 6
  • 19