无法在python中连接HTTPS网址

时间:2017-11-28 13:15:05

标签: python https

#!/usr/bin/python
import requests
from requests.auth import HTTPBasicAuth
requests.get('url', auth=HTTPBasicAuth('XXXX','XXXX'))

我收到以下错误

(Caused by ProxyError('Cannot connect to proxy.', error(111, 'Connection refused')
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='XXXX', port=443): Max retries exceeded with url

1 个答案:

答案 0 :(得分:0)

根据错误,您使用HTTPBasicAuth代替代理(也许是公司代理?)。 尝试在请求之前设置代理凭据。

$ export http_proxy='http://myproxy.example.com:1234'
$ python request.py  # Using http://myproxy.example.com:1234 as a proxy

如果您使用公司代理,请告诉我。