在我的 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'
有谁知道如何设置这个属性?