ここで何が悪いのか理解するのに苦労しています。ログイン情報を送信しています。ヘッダーに正しい値のSet-Cookieが表示されていますが、Cookiesコレクションがいっぱいになりません。
これはHTTPS、ログインの自動リダイレクトですが、この問題のトラブルシューティングを試みるために、AllowAutoRedirect=falseで無効にしました。
このスクリーンショットでは、デバッグ情報とCookieが設定されていることを簡単に確認できます。httpWebRequest.Cookieを新しいCookieCollectionに設定しています。
HttpWebRequest httpRequest;
CookieContainer reqCookies = new CookieContainer();
string url = "https://example.com";
string[] email = user.Split('@');
email[0] = System.Web.HttpUtility.UrlEncode(email[0]);
user = email[0] + "@" + email[1];
pass = System.Web.HttpUtility.UrlEncode(pass);
string postData = "email=" + user + "&password=" + pass;
byte[] byteData = Encoding.UTF8.GetBytes(postData);
httpRequest = (HttpWebRequest)WebRequest.Create(url);
httpRequest.Method = "POST";
httpRequest.Referer = url;
httpRequest.CookieContainer = reqCookies;
httpRequest.UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1003.1 Safari/535.19";
httpRequest.Accept = "text/html, application/xhtml+xml, */*";
httpRequest.ContentType = "application/x-www-form-urlencoded";
httpRequest.ContentLength = byteData.Length;
using (Stream postStream = httpRequest.GetRequestStream())
{
postStream.Write(byteData, 0, byteData.Length);
postStream.Close();
}
httpRequest.AllowAutoRedirect = false;
HttpWebResponse b = (HttpWebResponse)httpRequest.GetResponse();
http://www.yahoo.comに接続するのとまったく同じコードを試してみたところ、Cookieが私のコレクションに入れられました...ああ...
Set-Cookieヘッダーの値は次のとおりです。
s = 541E2101-B768-45C8-B814-34A00525E50F; Domain = example.com; パス=/; バージョン=1