在使用selenium操作Chrome浏览器报错:requests.exceptions.SSLError: HTTPSConnectionPool(host=‘lv-pc-api-sinfonlineb.ulikecam.com’, port=443): Max retries exceeded with url: /get (Caused by SSLError(SSLError(1, ‘[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)’)))
报错信息如下:
requests.exceptions.SSLError: HTTPSConnectionPool(host=‘lv-pc-api-sinfonlineb.ulikecam.com’, port=443):
Max retries exceeded with url: /get (Caused by SSLError(SSLError(1, ‘[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)’)))
主要报错信息内容翻译如下所示:
requests.exceptions.SSLError: HTTPSConnectionPool(host=‘lv-pc-api-sinfonlineb.ulikecam.com’, port=443):
Max retries exceeded with url: /get (Caused by SSLError(SSLError(1, ‘[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)’)))
翻译:
requests.exceptions.SLError:HTTPSConnectionPool(host='lv-pc-api-sinfonlineb.ulikecam.com',port=443):
超过url的最大重试次数:/get(由SSLError引起(SSLError(1,'[SSL:WRONG_VERSION_NUMBER]错误的版本号(_SSL.c:1123)'))
经过查阅资料,发现这个报错是因为请求异常,连接超过最大连接次数,最后是由于证书认证失败。
小伙伴们按下面的解决方法即可解决!!!
解决该问题的方法是在requests.get()请求中添加一个参数verify=False避免ssl认证:
出错的代码如下:
import requests
r = requests.get('https://httpbin.org/get', proxies=proxies)
修改之后的代码如下:
import requests
r = requests.get('https://httpbin.org/get', proxies=proxies, verify=True)
然后就可以正常使用了。