ERROR | HTTPSConnectionPool(host='api.weixin.qq.com', port=443): Max retries exceeded with url: /cgi-bin/token?appid=wxba9a30b144d1fd16&grant_ type=client_credential&secret=6a0b75e631ebe43f6d60a551ad4ac3fe (Caused by ProxyError('Your proxy appears to only use HTTP and not HTTPS, try changing your proxy URL to be HTTP. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#https-proxy-error-http-proxy', SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong versio n number (_ssl.c:1076)'))))
时间: 2024-03-19 12:43:00 浏览: 205
python pip3 出现 HTTPSConnectionPool(host=’pypi.org’, port=443)
根据你提供的信息,这个错误是因为你的代理服务器只支持 HTTP,而不支持 HTTPS。你可以尝试更改代理服务器的 URL 为 HTTP,或者使用其他支持 HTTPS 的代理服务器。具体的解决方法可以参考这个链接:https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#https-proxy-error-http-proxy
阅读全文