ping sign.rnd.longcheer.net -p 8000能ping通但是报错requests.exceptions.ConnectionError: HTTPConnectionPool(host='sign.rnd.longcheer.net', port=8000): Max retries exceeded with url: /api/signature/ (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f39e96bf0d0>: Failed to establish a new connection: [Errno 110] Connection timed out',))
时间: 2024-04-26 10:23:29 浏览: 81
ping 外网报错:比如ping百度 From 192.168.0.56 (192.168.0.56) icmp_seq=3 Time to live exceeded
如果你能够ping通服务器,但是在使用requests库时仍然出现连接错误,那么可能是由于你的程序中使用的requests库不支持使用代理或者防火墙等网络限制的问题。你可以尝试在requests库中设置代理或者修改网络连接方式,以便更好地处理这类连接错误。另外,你也可以尝试使用其他网络请求库进行请求,比如urllib,看看是否能够解决这个问题。
阅读全文