【发布时间】:2018-11-21 14:39:32
【问题描述】:
Support for Same-Site cookies has landed in Firefox 60,但从 Python 3.6 开始,标准库 cookie 模块不支持 SameSite 属性。
【问题讨论】:
Support for Same-Site cookies has landed in Firefox 60,但从 Python 3.6 开始,标准库 cookie 模块不支持 SameSite 属性。
【问题讨论】:
SameSite 属性的支持已于 2018 年 4 月 7 日在 Pull Request #6413 中添加。
可以对旧版本进行猴子补丁以支持该属性:
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')
【讨论】:
samesite 和SameSite 周围出现str?
unicode_literals模式开启时确保与python 2的兼容性。
str