Python 使用 urllib2 发起请求时 Tor 检查失败
阅读其他问题,我得到了一段能够通过 Tor 代理发出请求的 Python 代码片段:
import urllib2
proxy = urllib2.ProxyHandler({'http':'127.0.0.1:8118'})
opener = urllib2.build_opener(proxy)
print opener.open('https://check.torproject.org/').read()
由于 Tor 在 Firefox 中与 TorButton 配合工作正常,我希望它能正常工作在Python中。不幸的是,包含在混乱的 HTML 中: Sorry。您没有使用 Tor
。我不确定为什么会出现这种情况,也不知道如何让 Tor 与 urllib2 一起正常工作。
After reading through the other questions on StackOverflow, I got a snippet of Python code that is able to make requests through a Tor proxy:
import urllib2
proxy = urllib2.ProxyHandler({'http':'127.0.0.1:8118'})
opener = urllib2.build_opener(proxy)
print opener.open('https://check.torproject.org/').read()
Since Tor works fine in Firefox with TorButton, I expected it to work fine in Python. Unfortunately, included in the mess of HTML: Sorry. You are not using Tor
. I am not sure why this is the case or how to get Tor working properly with urllib2
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已为
http
协议设置了本地 Tor 实例的代理,但您使用https
与“check.torproject.org”通信。尝试:You've set up a proxy to your local Tor instance for the
http
protocol, but you're usinghttps
to talk to "check.torproject.org". Try: