Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Tornado 中设置一个在浏览器关闭时过期的安全 cookie? 如果我使用set_cookie我可以在不传递额外参数的情况下执行此操作(我只是设置了 cookie),但是如果我必须使用set_secure_cookie呢?
set_cookie
set_secure_cookie
我几乎尝试了一切:
在我看来,你真的走在正确的轨道上。你尝试越来越低的值,cookie 的过期时间越来越短。
传递expires_days=None以使其成为会话 cookie(在浏览器关闭时过期)。
expires_days=None