類比登入的文章有很多,代碼也有很多,但是缺少詳細的關於如何抓取登入時的請求內容,以及我在類比登入過程中出現的一些問題。
實現步驟; 使用抓包工具(這裡使用360瀏覽器內建的工具)抓取登入動作時我們向服務法送的請求的內容 使用httpwebrequest類比請求,然後擷取應答內容,儲存cookie;使用儲存的cookie發起需要擷取頁面的請求擷取頁面內容。 以藝龍旅行網為例子: 首先開啟藝龍的登入頁面,在360瀏覽器的右上方有個工具,點開--》選擇開發人員工具--》切換到Network欄目--》將左下角的黑色實心圓圈點成紅色,開啟跨頁面記錄。如下圖
點擊登入我們看看會發生什麼。 如下圖,第一條就是我們請求登入的資訊,點擊開啟查看具體內容。
如下圖,右側的地址就是我們類比登陸時要發起登入請求的地址
如下圖,右側往下拉Form Data就是我們登入時發送請求時發送的內容。
到此,所有我們需要的資訊全部擷取到。代碼實現過程比較簡單我就不細說了,附上My Code,上面有說明,可以自己看。
</pre><pre name="code" class="csharp"> private void btnASPNET_Click(object sender, EventArgs e) { Dictionary<string, string> postParams = new Dictionary<string, string>(); postParams.Add("actiondo", "login"); postParams.Add("loginname", "你的藝龍帳號"); postParams.Add("pwd", "你的藝龍密碼"); postParams.Add("vcode", ""); postParams.Add("cardno", ""); postParams.Add("isRememberMe", "true"); postParams.Add("language", "cn"); postParams.Add("viewpath", "~/views/myelong/passport/login.aspx"); textBox1.Text = GetAspNetCodeResponseDataFromWebSite(postParams, "https://secure.elong.com/passport/isajax/Login/LoginAgent", "http://my.elong.com/me_personalcenter_cn?rnd=20150819161909"); } private string GetAspNetCodeResponseDataFromWebSite(Dictionary<string, string> postParams, string getViewStateAndEventValidationLoginUrl, string getDataUrl) { try { CookieContainer cookieContainer = new CookieContainer(); /////////////////////////////////////////////////// // 1.開啟 MyLogin.aspx 頁面,獲得 GetVeiwState & EventValidation /////////////////////////////////////////////////// // 設定開啟頁面的參數 HttpWebRequest request = WebRequest.Create(getViewStateAndEventValidationLoginUrl) as HttpWebRequest; request.Method = "GET"; request.KeepAlive = false; request.AllowAutoRedirect = false; // 接收返回的頁面 HttpWebResponse response = request.GetResponse() as HttpWebResponse; System.IO.Stream responseStream = response.GetResponseStream(); System.IO.StreamReader reader = new System.IO.StreamReader(responseStream, Encoding.UTF8); string srcString = reader.ReadToEnd(); /////////////////////////////////////////////////// // 2.自動填滿並提交 Login.aspx 頁面,提交Login.aspx頁面,來儲存Cookie /////////////////////////////////////////////////// // 要提交的字串資料。格式形如:user=uesr1&password=123 string postString = ""; foreach (KeyValuePair<string, string> de in postParams) { //把提交按鈕中的中文字元轉換成url格式,以防中文或空格等資訊 postString += System.Web.HttpUtility.UrlEncode(de.Key.ToString()) + "=" + System.Web.HttpUtility.UrlEncode(de.Value.ToString()) + "&"; } // 將提交的字串資料轉換成位元組數組 byte[] postData = Encoding.ASCII.GetBytes(postString); // 設定提交的相關參數 request = WebRequest.Create(getViewStateAndEventValidationLoginUrl) as HttpWebRequest; request.Method = "POST"; request.KeepAlive = false; request.ContentType = "application/x-www-form-urlencoded"; request.CookieContainer = cookieContainer; request.ContentLength = postData.Length; request.AllowAutoRedirect = false; // 提交請求資料 System.IO.Stream outputStream = request.GetRequestStream(); outputStream.Write(postData, 0, postData.Length); outputStream.Close(); // 接收返回的頁面 response = request.GetResponse() as HttpWebResponse; responseStream = response.GetResponseStream(); reader = new System.IO.StreamReader(responseStream, Encoding.UTF8); srcString = reader.ReadToEnd(); /////////////////////////////////////////////////// // 3.開啟需要抓取資料的頁面 /////////////////////////////////////////////////// // 設定開啟頁面的參數 request = WebRequest.Create(getDataUrl) as HttpWebRequest; request.Method = "GET"; request.KeepAlive = false; request.CookieContainer = cookieContainer; // 接收返回的頁面 response = request.GetResponse() as HttpWebResponse; responseStream = response.GetResponseStream(); reader = new System.IO.StreamReader(responseStream, Encoding.UTF8); srcString = reader.ReadToEnd(); return srcString; /////////////////////////////////////////////////// // 4.分析返回的頁面 /////////////////////////////////////////////////// // ...... ...... } catch (WebException we) { string msg = we.Message; return msg; } }
代碼中使用了cookieContainer來儲存登入時的cookie。 文章到此結束,繼續研究帶有驗證碼的類比登入。