我正在尝试从我的.net应用程序登录一个web应用程序,但由于某种原因,它不起作用。以下是登录代码:
<form action="./process-login.php" method="post">
<table border="0" cellpadding="5" cellspacing="0">
<tr>
<td>Username:</td>
<td><input type="text" size="20" name="username" value=""></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" size="20" name="password" value=""></td>
</tr>
<tr>
<td><input type="submit" name="axn" value=Login></td>
</tr>
</table>
</form>下面是我在.net上做这件事的方法:
string userName = "user";
string password = "password";
string postData = "username=" + userName;
postData += ("&password=" + password);
postData += ("&axn=Login");
HttpWebRequest loginRequest = (HttpWebRequest)
WebRequest.Create("http://server.com/process-login.php");
//Added following answer begin
CookieContainer CC = new CookieContainer();
loginRequest.CookieContainer = CC;
//Added following answer end
loginRequest.Method = "POST";
loginRequest.Accept = "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, */*";
loginRequest.Headers.Add("Accept-Encoding: gzip,deflate");
loginRequest.Headers.Add("Accept-Language: en-us");
loginRequest.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705;)";
loginRequest.ContentLength = postData.Length;
loginRequest.ContentType = "application/x-www-form-urlencoded";
loginRequest.Referer = "http://server.com/login.php";
loginRequest.KeepAlive = true;
//Also added
loginRequest.AllowAutoRedirect = false;
StreamWriter newStream = new StreamWriter(loginRequest.GetRequestStream());
newStream.Write(postData);
newStream.Close();
//No cookie in the collection :-(
//Problem here, after this line loginRequest url's has changed
//it's gone back to login.php
HttpWebResponse responseLogin = (HttpWebResponse)loginRequest.GetResponse();
StreamReader stIn = new StreamReader(responseLogin.GetResponseStream());
string strResponse = stIn.ReadToEnd();
stIn.Close();
//strResponde contains the login page, still no cookie :-(我使用我的浏览器登录并与fiddler检查--这是我为客户端获得的信息:
POST http://server.com/process-login.php HTTP/1.1
Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, */*
Referer: http://server.com/login.php
Accept-Language: en-us
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
Host: server.com
Content-Length: 45
Connection: Keep-Alive
Pragma: no-cache
username=username&password=password&axn=Login在响应头中,我得到:
HTTP/1.1 302 Found
Date: Thu, 20 May 2010 14:07:36 GMT
Server: Apache/2.2.3 (Unix)
Accept-Ranges: bytes
X-Powered-By: PHP/5.2.0
Set-Cookie: login=User%7C3142%7CUser+Inc.%7CAll+Orders+Discounted%7C; expires=Thu, 20-May-2010 22:07:36 GMT; domain=server.com
Set-Cookie: username=deleted; expires=Wed, 20-May-2009 14:07:35 GMT; path=/; domain=server.com
Set-Cookie: password=deleted; expires=Wed, 20-May-2009 14:07:35 GMT; path=/; domain=server.com
Location: /index.php
Content-Length: 0
Keep-Alive: timeout=15, max=200
Connection: Keep-Alive
Content-Type: text/html饼干!
我做错了什么我拿不到饼干?
更新:添加代码后的答案,我现在可以得到饼干!我要问另一个问题,因为我似乎仍然找不到安全的网页.
发布于 2010-05-20 16:59:29
我没有看到你在网络请求上设置一个CookieContainer。你能通过设置它来重试吗?
发布于 2010-05-20 15:02:31
因为您得到了302,所以well请求也会自动请求下一个URL。您可以通过设置loginRequest.AllowAutoRedirect = false;来关闭它。一旦你这样做了,你应该看看饼干。这是AllowAutoRedrect的文档。
https://stackoverflow.com/questions/2874907
复制相似问题