Support for Same-Site cookies has landed in Firefox 60,但是从Python 3.6开始,标准库cookie模块不支持SameSite属性。

最佳答案

2018年4月7日在Pull Request #6413中添加了对SameSite属性的支持。

可以对较旧的版本进行猴子补丁以支持该属性:

try:
    from http.cookies import Morsel
except ImportError:
    from Cookie import Morsel

Morsel._reserved[str('samesite')] = str('SameSite')

或使用six:
from six.moves.http_cookies import Morsel

Morsel._reserved[str('samesite')] = str('SameSite')

09-07 01:55