V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
youthfire
V2EX  ›  Python

有熟悉 Google API 的朋友吗? ConnectionResetError: [Errno 54] Connection reset by peer

  •  
  •   youthfire · 2020-07-23 15:54:02 +08:00 · 3035 次点击
    这是一个创建于 1344 天前的主题,其中的信息可能已经有所发展或是发生改变。

    Mac 下跑 Python,调用 gsheets 库

    相关的 Google Drive 和 Google Sheets API 都已经 Enable, 下载了 client_secret.json,

    运行相关 Python 程序, 且登录相关页面后,完成验证,显示 The authentication flow has completed.

    但 terminal 提示 ConnectionResetError: [Errno 54] Connection reset by peer

    网上有搜索到可能和 OpenSSL 有关,但不确定.这个是被和谐的意思吗? 系统是 Catalina,还需要手动升级 OpenSSL 吗?

    7 条回复    2020-09-15 10:26:51 +08:00
    GordianZ
        1
    GordianZ  
    MOD
       2020-07-23 16:18:49 +08:00
    python 没有走代理?
    youthfire
        2
    youthfire  
    OP
       2020-07-23 16:57:29 +08:00
    @GordianZ 确实是,走了以后正常了,感谢
    skyfree
        3
    skyfree  
       2020-07-23 17:03:43 +08:00
    用正式的 V-P-N 来上网,不要用 s.s.r 之类的代理客户端。 应该可以搞定。
    youthfire
        4
    youthfire  
    OP
       2020-07-23 17:11:34 +08:00
    @skyfree 感谢提醒
    natsumezhang
        5
    natsumezhang  
       2020-09-14 15:39:39 +08:00
    @youthfire 朋友你的代理如何设置呢?
    youthfire
        6
    youthfire  
    OP
       2020-09-15 02:09:37 +08:00
    @natsumezhang
    ```python
    import socks
    import socket
    socks.set_default_proxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1",1081)
    socket.socket = socks.socksocket
    ```
    1081 改成你自己的端口号
    natsumezhang
        7
    natsumezhang  
       2020-09-15 10:26:51 +08:00
    @youthfire 感谢大佬!我昨天通过 google playground 拿到了 refresh token,然后在 Hong Kong 服务器上拿到了 access token 。相当于跳过了浏览器验证的流程,变成了手动。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1063 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 37ms · UTC 19:00 · PVG 03:00 · LAX 12:00 · JFK 15:00
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.