解决: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=‘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的SSL相关依赖安装包:
pip install cryptography
pip install pyOpenSSL
pip install certifi
方法二:如果已经安装依赖安装包,还会报错,则在请求后面加上verify=False,就是在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)
然后就可以正常使用了。
方法三:如果出现如下报错
InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecureRequestWarning)
需要添加以下代码:
import urllib3
urllib3.disable_warnings()
就可以解决这个问题了文章来源:https://www.toymoban.com/news/detail-833584.html
今天的分享就到此结束了
文章来源地址https://www.toymoban.com/news/detail-833584.html
到了这里,关于解决:requests.exceptions.SSLError: HTTPSConnectionPool(host=‘x‘,port=x): Max retries exceeded with url的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!