httpwebrequest 개체를 사용하여 www.diary.com에 로그인하려고합니다. 그러나 항상 로그인에 실패하고 로그인 페이지를 다시 제공합니다. 누군가가 나에게 무엇이 잘못 되었는가를 깨달을 수 있습니까?C# httpwebrequest 자격 증명 문제
// prepare the web page we will be asking for
HttpWebRequest request = (HttpWebRequest)
WebRequest.Create(@"http://diary.com/events/agenda");
request.ContentType = "text/html";
request.Credentials = new NetworkCredential(@"[email protected]", "password");
request.AllowAutoRedirect = true;
request.Referer = @"http://diary.com/";
// execute the request
HttpWebResponse response = (HttpWebResponse)
request.GetResponse();
// we will read data via the response stream
Stream resStream = response.GetResponseStream();
// set the WebBrowser object documentStream to the response stream
myWB.DocumentStream = resStream;
// simply tell me the title of the webpage
MessageBox.Show(myWB.Document.Title);