解决:requests.exceptions.SSLError: HTTPSConnectionPool(host=‘x‘,port=x): Max retries exceeded with url

解决: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)’)))

背景

在使用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=‘x‘,port=x): Max retries exceeded with url_第1张图片

报错翻译

主要报错信息内容翻译如下所示:

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)

然后就可以正常使用了。



今天的分享就到此结束了

欢迎点赞评论关注三连

在这里插入图片描述

你可能感兴趣的:(Python,python)