我已经为提交的网址制作了 C# 应用程序,该应用程序可以获取谷歌图像和文本结果。
问题是它始终适用于使用的 url,HTTPWEBREQUEST
但是当我使用代理时它不起作用。我收到诸如 302 Document Move or
502 Server 不可用之类的错误。
同样,如果我使用 webbrowser 控件,它可以与代理一起使用。
我确实看到了很多与我的问题有关的问题和答案,但没有一个匹配接近..
有什么建议么?
我已经为提交的网址制作了 C# 应用程序,该应用程序可以获取谷歌图像和文本结果。
问题是它始终适用于使用的 url,HTTPWEBREQUEST
但是当我使用代理时它不起作用。我收到诸如 302 Document Move or
502 Server 不可用之类的错误。
同样,如果我使用 webbrowser 控件,它可以与代理一起使用。
我确实看到了很多与我的问题有关的问题和答案,但没有一个匹配接近..
有什么建议么?
为我自己的问题找到了解决方案:
我们需要将 https 代理与 google 一起使用才能使其正常工作。因为这对我有用并制作适当的主机,因为我还根据不同的位置使用多个 url。
这是我的代码:
public string getHtmltt(string url)
{
string responseData = "";
try
{
string host = string.Empty;
if (url.Contains("/search?"))
{
host = url.Remove(url.IndexOf("/search?"));
if(host.Contains("//"))
{
host = host.Remove(0, host.IndexOf("//")).Replace("//","").Trim();
}
}
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Accept = "application/x-ms-application, image/jpeg, application/xaml+xml, image/gif, image/pjpeg, application/x-ms-xbap, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*";
request.AllowAutoRedirect = true;
request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)";
request.Timeout = 60000;
request.Method = "GET";
request.KeepAlive = false; ;
// request.Host = "www.google.com.af";
request.Host = host;
request.Headers.Add("Accept-Language", "en-US");
//request.Proxy = null;
// WebProxy prx = new WebProxy("199.231.211.107:3128");
WebProxy prx = new WebProxy(proxies[0].ToString().Trim());
request.Proxy = prx;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
if (response.StatusCode == HttpStatusCode.OK)
{
Stream responseStream = response.GetResponseStream();
StreamReader myStreamReader = new StreamReader(responseStream);
responseData = myStreamReader.ReadToEnd();
}
foreach (Cookie cook in response.Cookies)
{
inCookieContainer.Add(cook);
}
response.Close();
}
catch (System.Exception e)
{
responseData = "An error occurred: " + e.Message;
}
return responseData;
}
到目前为止它的工作gr8。