阳崽崽 发表于 2021-5-16 21:36:05

求助!代理服务器ip设计不成功

import urllib.request

url = "https://www.whatismyip.com.tw"
proxy_support = urllib.request.ProxyHandler({"http":"59.62.169.11:8888"})
opener = urllib.request.build_opener(proxy_support)
opener.addheaders = [('User-Agent', 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.65 Safari/537.36')]
urllib.request.install_opener(opener)

re = urllib.request.urlopen(url)
html = re.read().decode("utf-8")
print(html)

使用以上代码查询出来的ip,并不是设置的代理服务器ip地址,麻烦各位大神看一下哪里有问题?

123@321 发表于 2021-5-16 22:43:59

现在的免费代理IP可以说几乎用不了,花钱买代理IP吧

suchocolate 发表于 2021-5-17 00:06:46

本帖最后由 suchocolate 于 2021-5-17 00:09 编辑

代理服务器不可用,我试过了。用这个可以验证代理服务器可不可用。import requests


def main():
    proxy = {'http': '59.62.169.11:8888'}
    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()

阳崽崽 发表于 2021-5-17 17:28:41

suchocolate 发表于 2021-5-17 00:06
代理服务器不可用,我试过了。用这个可以验证代理服务器可不可用。

多谢!!{:10_254:}

阳崽崽 发表于 2021-5-17 17:29:54

123@321 发表于 2021-5-16 22:43
现在的免费代理IP可以说几乎用不了,花钱买代理IP吧

内心正在挣扎,做实验买个IP有些不舍{:10_250:}

wp231957 发表于 2021-5-17 18:01:06

阳崽崽 发表于 2021-5-17 17:29
内心正在挣扎,做实验买个IP有些不舍

没啥意思,除非你不差钱
页: [1]
查看完整版本: 求助!代理服务器ip设计不成功