0

我已经成功实现了令牌身份验证并用它保护了我的 rest web 服务方法——这是一个很好的方法。

现在我无法从令牌(如 ID)访问用户数据,以便在访问(受保护的)休息服务方法中对其进行操作。

任何想法 ?

4

1 回答 1

3

您需要导入current_user将反映当前请求的当前经过身份验证的用户。

from flask_security import current_user, auth_token_required

@app.route('/')
@auth_token_required
def view():
    print current_user.id
于 2013-10-06T23:00:39.900 回答