无法再连接到accounts.google.com

时间:2018-07-27 13:17:46

标签: google-app-engine

上周,我们收到来自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',))

1 个答案:

答案 0 :(得分:2)

我看到您正在使用urllib3。确保在app.yaml中启用了ssl:

libraries:
- name: ssl
  version: latest

GAE最近删除了ssl 2.7版。