是BB啊 发表于 2021-6-6 09:40:30

第55讲问题

我按照课上的内容打代码,但是为什么显示我的IP还是我自己的,大佬们我这个哪里出了问题呢
import urllib.request

url = 'https://www.whatismyip.com.tw'

proxy_support = urllib.request.ProxyHandler({'http':'78.47.16.54:80'})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)

response = urllib.request.urlopen(url)
html = response.read().decode('utf-8')
print(html)

<!DOCTYPE HTML>
<html lang="zh-TW">
<head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <meta name="viewport" content="width=device-width,initial-scale=1.0">
        <title>我的IP位址查詢</title>
        <meta name="description" content="MY IP查詢:查詢我的IP位址,查代理IP,查IP國家,以及查IP真實位址"/>
        <meta name="keywords" content="IP,IP查詢,my IP,查IP,IP位址,what is my IP,我的IP,whatismyip,IP查詢器,查我的IP,我的IP位址,我的IP國家,偵測我的IP,查詢我的IP,查看我的IP,顯示我的IP,my IP address,my IP proxy"/>
        <link rel="canonical" href="https://www.whatismyip.com.tw/"/>
        <link rel="alternate" hreflang="x-default" href="https://www.whatismyip.com.tw/"/>
        <link rel="alternate" hreflang="zh-TW" href="https://www.whatismyip.com.tw/tw/"/>
        <link rel="alternate" hreflang="zh-CN" href="https://www.whatismyip.com.tw/cn/"/>
        <link rel="alternate" hreflang="en" href="https://www.whatismyip.com.tw/en/"/>
        <link rel="alternate" hreflang="es" href="https://www.whatismyip.com.tw/es/"/>
        <link rel="alternate" hreflang="ja" href="https://www.whatismyip.com.tw/ja/"/>
        <link rel="alternate" hreflang="hi" href="https://www.whatismyip.com.tw/hi/"/>
        <link rel="alternate" hreflang="th" href="https://www.whatismyip.com.tw/th/"/>
</head>
<body>
        <h1>IP位址</h1> <b style="font-size:1.5em;"><span data-ip="120.238.225.80">120.238.225.80</span></b> <i><span data-ip-country="CN">CN</span></i>
        <script type="application/json" id="ip-json">{"ip":"120.238.225.80","ip-country":"CN","ip-real":"","ip-real-country":""}</script>
        <script>function JSOnload(){var a=document.createElement("script");a.src="https://www.google-analytics.com/analytics.js",document.body.appendChild(a)}window.addEventListener?window.addEventListener("load",JSOnload,!1):window.attachEvent?window.attachEvent("onload",JSOnload):window.onload=JSOnload,window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)},ga.l=+new Date,ga("create","UA-192438729-1","auto"),ga("send","pageview");</script>
       
</body>
</html>

Twilight6 发表于 2021-6-6 10:39:41

本帖最后由 Twilight6 于 2021-6-6 10:40 编辑



我帮你换了个测 IP 网站,用下这个代码吧:

import urllib.request

url = 'http://httpbin.org/get'

proxy_support = urllib.request.ProxyHandler({'http':'78.47.16.54:80'})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)

response = urllib.request.urlopen(url)
html = response.read().decode('utf-8')
print(html)

运行结果:

是BB啊 发表于 2021-6-6 10:49:00

本帖最后由 是BB啊 于 2021-6-6 10:51 编辑


是BB啊 发表于 2021-6-6 10:50:24

本帖最后由 是BB啊 于 2021-6-6 10:51 编辑

Twilight6 发表于 2021-6-6 10:39
我帮你换了个测 IP 网站,用下这个代码吧:




用了大佬你给的网址,现在是
urllib.error.HTTPError: HTTP Error 503: Service Temporarily Unavailable

是BB啊 发表于 2021-6-6 15:43:36

Twilight6 发表于 2021-6-6 10:39
我帮你换了个测 IP 网站,用下这个代码吧:




{:5_100:}

Twilight6 发表于 2021-6-6 15:45:45

是BB啊 发表于 2021-6-6 15:43



呃,忘记回你了

我刚刚测试还是没毛病...

是BB啊 发表于 2021-6-6 15:49:47

Twilight6 发表于 2021-6-6 15:45
呃,忘记回你了

我刚刚测试还是没毛病...

好吧,谢谢你啦

Twilight6 发表于 2021-6-6 15:50:33

是BB啊 发表于 2021-6-6 15:49
好吧,谢谢你啦



你换个IP 试试

页: [1]
查看完整版本: 第55讲问题