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.
我正在编写一个 Web 应用程序(在烧瓶中),它具有 iOS 应用程序将与之通信的 API 后端。创建、传递和验证用户令牌的最佳方式是什么?
查看flask-oauthprovider。它可以让您保护这样的视图:
@provider.require_oauth() def view_profile(): ...
并为您处理令牌请求。