本文介绍了使用 Tor 作为代理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在 HttpWebRequest 中使用 Tor-Server 作为代理,我的代码如下所示:

I'm trying to use Tor-Server as a proxy in HttpWebRequest, my code looks like this:

HttpWebRequest request;
HttpWebResponse response;

request = (HttpWebRequest)WebRequest.Create("http://www.google.com");
request.Proxy = new WebProxy("127.0.0.1:9051");

response = (HttpWebResponse)request.GetResponse();
response.Close();

它与普通"代理完美配合,但使用 Tor 我在调用时遇到异常

it works perfect with "normal" proxies but with Tor I'm getting Exceptions while calling

GetResponse() 状态 = ServerProtocolViolation.消息是(德语...):Message = "Der Server hat eine Protokollverletzung ausgeführt.. Section=ResponseStatusLine"

推荐答案

如果您安装了 privoxy 并且跑步你可以做的

If you have privoxy installed and running you can do

request.Proxy = new WebProxy("127.0.0.1:8118"); // default privoxy port

这将使您能够使用 tor 发出请求

Which will enable you to make requests using tor

这篇关于使用 Tor 作为代理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 14:04