0

我正在使用 python 和烧瓶来制作网页。我正在尝试对 Microsoft graph 进行身份验证,但它给出了错误。请看下图:在此处输入图像描述

4

1 回答 1

0

使用debug模式查看调试信息。

  1. 烧瓶 > 1.0,使用FLASK_ENV=development.
  2. 烧瓶 < 1.0,使用FLASK_DEBUG=1.

Flask-OAuthlib 本身不支持代理。您可以尝试https://github.com/lepture/authlib它使用对 OAuth 客户端的请求。请求支持代理http://docs.python-requests.org/en/master/user/advanced/#proxies

于 2018-05-29T08:09:24.760 回答