|
抓包的数据 下面是代码 代码少返回sec的cookie.
HttpItem Itm = new HttpItem();
HttpHelper Helper = new HttpHelper();
HttpResult Result = new HttpResult();
Itm.Method = "GET";
Itm.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8";
Itm.UserAgent = " Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36";
Itm.URL = "http://passport.jd.com/uc/login?";
Itm.Header.Add("Accept-Encoding", "gzip,deflate,sdch");
Itm.Header.Add("Accept-Language", "zh-CN,zh;q=0.8");
Itm.Header.Add("Cache-Control", "max-age=0");
Result = Helper.GetHtml(Itm);
|
|