再次尝试制作我的第一个烧瓶应用程序,这一次,(在我创建了所有我需要的并且一切顺利之后)我试图用 保护一些端点flask_jwt_extended
,但我找不到如何在我的页面中使用它们,文档主要是关于显示 JSON 消息,一些教程使用邮递员,而在我的情况下,我使用的是 HTML 模板。
例如,用户将他的凭据从登录页面发送到此端点:
@app.route('/login', methods=['POST'])
def UserLogin():
data = parser.parse_args()
current_user = UserModel.find_by_username(data['username'])
if not current_user:
return {'message': 'User {} doesn\'t exist'.format(data['username'])}
if UserModel.verify_hash(data['password'], current_user.password):
access_token = create_access_token(identity = data['username'])
refresh_token = create_refresh_token(identity = data['username'])
resp = jsonify({'login': True}) #I just added this line from the documentation
set_access_cookies(resp, access_token) # and this one
set_refresh_cookies(resp, refresh_token) # and this one
return redirect(url_for('results'))
else:
return {'message': 'Wrong credentials'}
当然,我在端点添加了@jwt_required
装饰器:results
@app.route('/result',methods = ['POST','GET'])
@jwt_required
def results():
temp={}
if request.method == 'POST':
# some code to fill temp with values
return render_template('result.html',data=temp)
所以我得到一个{
"msg": "Missing cookie \"access_token_cookie\""
}
显然是因为我没有将 jwt 发回,但是如果在 return 语句中发送它,我该如何将用户重定向到我想要的页面?
事实上我用过app.config['JWT_TOKEN_LOCATION'] = ['cookies']