📜  烧瓶会话在 5 分钟内自动注销 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:18.740000             🧑  作者: Mango

代码示例1
from datetime import timedelta
 app = Flask(__name__)
 app.config['SECRET_KEY'] = 'xxxxxxxxx'
 app.config['PERMANENT_SESSION_LIFETIME'] =  timedelta(minutes=5)
The session will created for each client, seperated from other clients. So, I think the best place to set session.permanent is when you login():

@app.route('/login', methods=['GET', 'POST'])
def login():
    #After Verify the validity of username and password
    session.permanent = True