Nowhere did I find the norms of information, I'll ask here. How to use a torus for parsing? They say it can be put like a proxy? This is what I’m puzzled with the code, it works in vidby, the proxy sees. But I do not know if I use the torus in this? And how to determine? (+ I downloaded privoxy)

HttpWebRequest req = (HttpWebRequest)WebRequest.Create(sites); req.Proxy = new WebProxy("127.0.0.1:8118"); req.CookieContainer = new CookieContainer(); req.CookieContainer = GetUriCookieContainer(sites); HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); //System.Threading.Thread.Sleep(2000); 
  • Any page like yandex.ru/internet download through it and see what ip gave. several times with an interval of half an hour try - if ip different means a torus. besides, almost any ip can tell you that it is a torus network exit point (by this principle, by the way, some sites are already protected so that they don’t go to them through the torus) - Mike
  • @Mike unfortunately sparsilo my real ip. Maybe something in the code is wrong? - Sergiy
  • C # I do not know. so you have to wait for someone who knows. - Mike
  • You use WebProxy and, therefore, do not use TOR as a proxy. TOR gives only socks-proxy, not HTTP, which you have. Accordingly, you must either use socks, or configure privoxy. - Vladimir Martyanov
  • @ Vladimir Martianov may be interested in ru.stackoverflow.com/questions/593435/… ?? I can not fix it in any way - Sergiy

0