无法建立 connection.Showing 握手错误
Unable establish connection.Showing handshake error
我收到这个错误
HTTPSConnectionPool(host='api.fixer.io', port=443): Max retries exceeded with url: /latest?base=INR (Caused by SSLError(SSLError(1, '_ssl.c:510: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure')))
根据 运行 此代码
response=requests.get("https://api.fixer.io/latest?base="+cfrm)
当您收到 "Max retries exceeded with url" 错误时,发生的情况是主机拒绝连接,因为您从同一个 IP 地址快速发送大量请求。
我需要查看更多代码才能了解更多,但我猜您调用 requests.get 过于频繁,需要在两次调用之间暂停一段时间,以免向服务器发送垃圾邮件。
编辑:
我看到握手失败了。这意味着您在连接和频繁连接时遇到问题,因此您被房东拒绝了。
我收到这个错误
HTTPSConnectionPool(host='api.fixer.io', port=443): Max retries exceeded with url: /latest?base=INR (Caused by SSLError(SSLError(1, '_ssl.c:510: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure')))
根据 运行 此代码
response=requests.get("https://api.fixer.io/latest?base="+cfrm)
当您收到 "Max retries exceeded with url" 错误时,发生的情况是主机拒绝连接,因为您从同一个 IP 地址快速发送大量请求。
我需要查看更多代码才能了解更多,但我猜您调用 requests.get 过于频繁,需要在两次调用之间暂停一段时间,以免向服务器发送垃圾邮件。
编辑: 我看到握手失败了。这意味着您在连接和频繁连接时遇到问题,因此您被房东拒绝了。