[Django]-CSRF cookie not set Django cross-site iframe in chrome

2👍

This was solved by changing the value of CSRF_COOKIE_SAMESITE to ‘None’ instead of None. Apparently Chrome requires it to be an explicit string, not an empty value

Leave a comment