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

这篇具有很好参考价值的文章主要介绍了解决: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)’)))

报错截图如下:
max retries exceeded with url: /board/4?offset=0 (caused by sslerror(sslcert,# Python Bug,python



报错翻译

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

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()

就可以解决这个问题了



今天的分享就到此结束了

欢迎点赞评论关注三连

max retries exceeded with url: /board/4?offset=0 (caused by sslerror(sslcert,# Python Bug,python文章来源地址https://www.toymoban.com/news/detail-833584.html

到了这里,关于解决:requests.exceptions.SSLError: HTTPSConnectionPool(host=‘x‘,port=x): Max retries exceeded with url的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包