最新更新:
1、目标是本地电脑(开发环境)request一个API,取得返回的JSON。
2、本地使用request请求API的https地址时,报了这个错。
3、本地使用request请求别的网址:zhihu.comgithub.com,都用https,则不会出错。
4、上自己的一台服务器请求这个API则也不报错。
也不知道问题出在哪里。
用python request 一个自己弄的https网站,报错:
requests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))
但是request其他https网站正常。
自己的这个https网站在Postman等接口调试软件下又正常。
用openssl s_client -connect 域名的443端口,返回
CONNECTED(00000003)
write:errno=54
请教大神一个查错的思路。。
Solved.
The reason is that ssl_protocols TLSv1.2 TLSv1.1 on the server no longer supports TLSv1. Without TLSv1 support, this error will occur if the OpenSSL in the MAC is not the latest version.
Solution: Enable TLSv1 support on the server, or update OpenSSL on your computer.
If there is no problem accessing in the browser, it should be a lack of headers. Copy all the headers in the browser and try again