我正在尝试使用Tor与python和urllib2并且卡住了。以下
print opener.open('http://check.torproject.org/').read()
和
telnet 127.0.0.1 9051
给了我以下错误:
514 Authentication Required.
这是我想要使用的代码:但是我在urllib2.urlopen调用上收到了相同的514 Authentication Error。
import urllib2
# using TOR !
proxy_support = urllib2.ProxyHandler({"http" : "127.0.0.1:9051"} )
opener = urllib2.build_opener(proxy_support)
urllib2.install_opener(opener)
# every urlopen connection will then use the TOR proxy like this one :
urllib2.urlopen('http://www.google.com').read()
有关为何发生这种情况的任何建议?
Tor Vidalia浏览器 - >设置 - >高级:身份验证设置为“随机生成”
我正在使用Python 2.65 urllib2 Tor