H原子 发表于 2021-4-27 23:26:10

使用代理 IP报错‘连接超时’

本帖最后由 H原子 于 2021-4-27 23:25 编辑

源代码:
'''python'''import requests
proxies = {'http':'49.86.178.39:9999'}
def returnip():
    url = 'http://ip.myhostadmin.net/'#返回当前访问IP的地址,已测试能成功返回当前主机IP

    response = requests.get(url,proxies=proxies,timeout=5)
    html = response.content.decode()

    print(html)
   
if __name__ == '__main__':
    returnip()

试了很多代理IP,都连接超时
raise ConnectTimeout(e, request=request)
requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='49.86.178.39', port=9999): Max retries exceeded with url: http://ip.myhostadmin.net/ (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x033C8D30>, 'Connection to 49.86.178.39 timed out. (connect timeout=5)'))
去掉超时选项,报错 ‘由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败’
raise ProxyError(e, request=request)
requests.exceptions.ProxyError: HTTPConnectionPool(host='49.86.178.39', port=9999): Max retries exceeded with url: http://ip.myhostadmin.net/ (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('<urllib3.connection.HTTPConnection object at 0x033A8D10>: Failed to establish a new connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。')))

请大佬解惑!!!

南归 发表于 2021-4-28 08:40:18

首先要确定ip的可用性

H原子 发表于 2021-4-28 08:50:37

这其实也在确定IP的可用性,不过我测试过很多代理IP网站上的IP,都不行,有没有具体的其它方法呢?

suchocolate 发表于 2021-4-28 10:15:15

本帖最后由 suchocolate 于 2021-4-28 10:16 编辑

用下面的代码验证一下就知道了,返回的不是代理的ip,说明代理不可用。
现在免费的都不稳定,还是付费的稳定,另外新人没必要用代理。import requests


def main():
    proxy = {'http': '49.86.178.39:9999'}
    url = 'https://my.ip.cn/api/index?ip=&type=0'
    headers = {'user-agent': 'firefox', 'Referer': 'https://my.ip.cn/', 'X-Requested-With': 'XMLHttpRequest'}
    r = requests.get(url, headers=headers, proxies=proxy)
    print(r.text)


if __name__ == '__main__':
    main()

RAINFOR 发表于 2021-11-17 18:57:26

suchocolate 发表于 2021-4-28 10:15
用下面的代码验证一下就知道了,返回的不是代理的ip,说明代理不可用。
现在免费的都不稳定,还是付费的稳 ...

为什么这个代码运行后,返回的ip是{"rs":1,"code":0,"address":"中国香港","ip":"162.158.179.133","isDomain":0}
而且我用同组的电脑ip也不能

suchocolate 发表于 2021-11-17 19:04:16

RAINFOR 发表于 2021-11-17 18:57
为什么这个代码运行后,返回的ip是{"rs":1,"code":0,"address":"中国香港","ip":"162.158.179.133"," ...

贴一下你的代码

RAINFOR 发表于 2021-11-17 20:46:27

suchocolate 发表于 2021-11-17 19:04
贴一下你的代码

def main():
    proxy = {'http': '49.86.178.39:9999'}
    url = 'https://my.ip.cn/api/index?ip=&type=0'
    headers = {'user-agent': 'firefox', 'Referer': 'https://my.ip.cn/', 'X-Requested-With': 'XMLHttpRequest'}
    r = requests.get(url, headers=headers, proxies=proxy)
    print(r.text)

就是用上文那个代码


if __name__ == '__main__':
    main()
页: [1]
查看完整版本: 使用代理 IP报错‘连接超时’