0

在我的 python 后端应用程序中,我试图设置一个具有有效龙卷风属性的安全 cookie。

但是,我遇到了一个验证码问题,说我需要设置属性 samesite=strict。

执行以下操作:

    # this line is called from another method that sets the cookie.
    request_handler.set_secure_cookie(**self.build_cookie())



    def build_cookie(self):
        cookie_info = {
            'name': 'session_cookie',
            'value': 'session_cookie_value',
            'httponly': True,
            'expires_days': None,
            'samesite': 'Strict',
            'secure': True,
        }
        return cookie_info

给我以下错误

File "/usr/local/lib/python3.6/http/cookies.py", line 332, in __setitem__
raise CookieError("Invalid attribute %r" % (K,))
http.cookies.CookieError: Invalid attribute 'samesite'

有谁知道如何设置这个属性?

4

1 回答 1

2

对 cookie 属性的支持取决于 Python 的版本;该samesite属性是在 Python 3.8 中添加的。您还可以按照此问题中的描述在旧版本的 python 中对其进行猴子修补。

于 2019-11-10T23:11:09.340 回答