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.
好的,所以我使用 Flask-Restful 编写了一个 API,现在我想实现 OAuth2 授权。
我已经尝试过pyoauth2,但它没有记录,而且教程非常复杂。
所以,我的问题是:我该怎么做?
按照 flask-oauthlib 指南设置基本端点。确保它适用于香草烧瓶端点。
配置您的 API 以使用 oauth 装饰器。
oauth = OAuth2Provider(app) api = restful.Api(app, decorators=[oauth.require_oauth('email')])