たとえば、次のような Google キャプチャを表示するポップアップ ボックスを作成しました。http://www.google.com/sorry/?continue=http://www.google.com/ajax/rd%3Fsky%3Deeuiphp%26ludocid%3D6083833001863340802%26rdu%3DCNzphIbM6rECFWkGtAodP3UAGQ%26sig%3DaY3%26q%3Dtandl%25C3%25A4kare%252Cg%25C3%25B6teborg%2BSweden
次に、プログラム内のボックスにキャプチャを入力し、情報を以下の次の関数に送信します。これは、データを Google に送信することになっています。Fiddler で追跡しようとしましたが、何が問題なのかわかりません。リクエストは、別のキャプチャ イメージを返すだけです。
Fiddler では、ブラウザにアクセスして GET タイプのリクエストを送信すると確認できますが、どのようにデータを送信すればよいでしょうか? POST を GET などに切り替えようとしましたが、常に同じエラーが発生し、別のキャプチャ イメージが表示されます。
何が間違っている可能性がありますか?
public string submitGoogleCaptcha(string html, string captchaCode)
{
CookieContainer cookieCont = new CookieContainer();
HttpWebRequest _wReq;
HttpWebResponse _wResp;
System.IO.StreamReader _sr;
System.Text.ASCIIEncoding _enc = new System.Text.ASCIIEncoding();
string continueValue = Regex.Match(html, @"<input type=""hidden"" name=""continue"" value=""\s*(.+?)\s*"">", RegexOptions.IgnoreCase).Groups[1].Value;
string idFromGoogle = Regex.Match(html, @"<input type=""hidden"" name=""id"" value=""\s*(.+?)\s*"">", RegexOptions.IgnoreCase).Groups[1].Value;
string _html = "";
string postData = "continue=" + continueValue + "&id=" + idFromGoogle + "&captcha=" + captchaCode + "&submit=Submit";
try
{
byte[] _data = _enc.GetBytes(postData);
_wReq = (HttpWebRequest)WebRequest.Create("http://www.google.com/sorry/Captcha?");
_wReq.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
_wReq.Referer = "http://www.google.com/sorry/?continue=" + HttpUtility.UrlEncode(continueValue);
_wReq.KeepAlive = true;
_wReq.Method = "POST";
_wReq.ContentType = "application/x-www-form-urlencoded";
_wReq.ContentLength = _data.Length;
_wReq.CookieContainer = cookieCont;
_wReq.AllowAutoRedirect = true;
_wReq.UserAgent = "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";
System.IO.Stream _outStream = _wReq.GetRequestStream();
_outStream.Write(_data, 0, _data.Length);
_outStream.Close();
_wResp = (HttpWebResponse)_wReq.GetResponse();
_sr = new System.IO.StreamReader(_wResp.GetResponseStream());
_html = _sr.ReadToEnd();
_sr.Close();
_wResp.Close();
}
catch (Exception ee)
{
}
return _html;
}