過去4〜5か月前、おそらく6か月前に成功しましたが、今ではサイトが変更されていることがわかりますHttpWebRequest
.CSVファイルのダウンロードに関する問題を使用して、目的の検索結果を取得できます.
ダウンロードがうまくいきません。これを WebClient で再現し、すべての Cookie を取得しましたが、それでも機能しません。
そうするとき、私はこれをファイルに入れます
location.replace("http://www.google.com/trends#content\x3d1\x26geo\x3dUS-AL\x26q\x3dsnooker\x26cmpt\x3dq\x26hl\x3den-AU").....meta http-equiv="refresh" content="0; url=' http://www.google.com/trends#content=1 &geo=US-AL&q=snooker&cmpt=q&hl=en-AU' ">
ファイルをダウンロードするコードは次のとおりです。
public void downloadsheet(string url, string path)
{
try
{
using (WebClient client = new WebClient())
{
string tmpCookieString = string.Empty;
string[] array = webBrowser1.Document.Cookie.Split(new char[]
{
';'
});
for (int i = 0; i < array.Length; i++)
{
string cookie = array[i];
string name = cookie.Split(new char[]
{
'='
})[0];
string value = cookie.Substring(name.Length + 1);
//client.Headers.Add(name, value);
if (i < array.Length - 1)
{
tmpCookieString = tmpCookieString + name + "=" + value + ";";
}
else
{
tmpCookieString = tmpCookieString + name + "=" + value;
}
}
client.Headers.Add(HttpRequestHeader.Cookie, tmpCookieString);
client.Headers.Add("Accept", "text/html, application/xhtml+xml, */*");
client.Headers.Add("User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)");
client.Headers.Add("Accept-Language", "en-US");
using (FileStream file = File.Create(path))
{
byte[] bytes = client.DownloadData(url);
file.Write(bytes, 0, bytes.Length);
}
}
}
catch (Exception exp_DE)
{
}
}
使用する URL は次のとおりです。
http://www.google.com/trends/trendsReport?hl=en-AU&q=snooker&geo=US-AL&cmpt=q&content=1&export=2
WebBrowserコントロールを使用して上記のそれぞれのリンクに移動すると、ダイアログ ボックスが開きます。