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.
我已经成功实现了令牌身份验证并用它保护了我的 rest web 服务方法——这是一个很好的方法。
现在我无法从令牌(如 ID)访问用户数据,以便在访问(受保护的)休息服务方法中对其进行操作。
任何想法 ?
您需要导入current_user将反映当前请求的当前经过身份验证的用户。
current_user
from flask_security import current_user, auth_token_required @app.route('/') @auth_token_required def view(): print current_user.id