The error is constantly knocked out:

$ exception {"The remote server returned an error: (429) Unknown."}

I thought that there were a lot of requests, and he didn’t let me, I decided to connect a proxy, and change them when such an error occurred. Look, mb is something wrong?

Uri sites = new Uri(url); HttpWebRequest req = (HttpWebRequest)WebRequest.Create(sites); WebProxy myproxy = new WebProxy(MyProxyHostString, MyProxyPort); req.Proxy = myproxy; req.CookieContainer = new CookieContainer(); req.CookieContainer = GetUriCookieContainer(sites); HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); 
  • The code is workable. it is a proxy or a remote host. Are you sure that you have an HTTP proxy? and are they exactly working? - 123_123
  • Perhaps the case at stackoverflow.com/a/24323342 - creamsun

0