上周,我们收到来自accounts.google.com
的错误消息。
我们如何解决这个问题?我们将GAE标准环境与python 2.7结合使用,并要求2.18 +
我们将在大约5天之内得到这个:
HTTPSConnectionPool(host='accounts.google.com',
port=443):
Max retries exceeded with url: /o/oauth2/token
(Caused by NewConnectionError('urllib3.connection.VerifiedHTTPSConnection object
at 0xfaa13790: Failed to establish a new connection: [Errno 110]
connection timed out',))
答案 0 :(得分:2)
我看到您正在使用urllib3。确保在app.yaml
中启用了ssl:
libraries:
- name: ssl
version: latest
GAE最近删除了ssl 2.7版。