使用模板呈现实现 flask_jwt_extended

implementing flask_jwt_extended with templates rendering

再次尝试制作我的第一个 Flask 应用程序,这一次(在我创建了我需要的所有应用程序并且一切顺利之后)我正在尝试使用 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'}

当然,我在 results 端点添加了 @jwt_required 装饰器:

@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']

您可能想要:

resp = make_response(redirect(url_for('results')))
set_access_cookies(resp, access_token)
set_refresh_cookies(resp, refresh_token)
return resp

我认为您不需要这条线! --> resp = jsonify({'login': True})

花了我一段时间才弄明白,不知道为什么这部分在docs中不清楚,那里的大多数例子直接returns JSON

此外,如果 JWT_ACCESS_COOKIE_PATH 路由错误,您也会得到同样的错误。