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();