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.
如何删除我的 Flask/python 应用程序设置的所有会话和 cookie。这样当用户返回时,他们必须重新登录。每次我将新版本的代码推送到生产环境时,我都想这样做。
我发现的最好方法是像这样使密钥无效
app.secret_key = os.urandom(32)
密钥足够安全,每次启动系统时,密钥都会更改,使所有会话无效。