请大家帮我看一下为什么这个ip代理请求失败
import urllib.requesturl = 'http://www.whatismyip.com.tw'
proxy_support = urllib.request.ProxyHandler({'http':'115.223.7.110:80'})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
respones = urllib.request.urlopen(url)
html = respones.read().decode('utf-8')
print(html)
这应该是服务器问题? 超时 本帖最后由 Twilight6 于 2020-6-28 17:13 编辑
网站问题。 你拿自己的浏览器去访问都发现访问不了
换 url 就可以了: http://httpbin.org/get这个查 IP 在 origin 属性那可以看到 IP地址
改成这个:
import urllib.request
url = 'http://httpbin.org/get'
proxy_support = urllib.request.ProxyHandler({'http':'115.223.7.110:80'})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
respones = urllib.request.urlopen(url)
html = respones.read().decode('utf-8')
print(html)
运行结果(红框内是 IP 地址):
Twilight6 发表于 2020-6-28 17:09
网站问题。 你拿自己的浏览器去访问都发现访问不了
换 url 就可以了: http://httpbin.org/get...
感谢大佬!!!可以了!!!!谢谢谢谢谢! 客气了~~~ 加油把!{:10_297:}
页:
[1]