|
现在的源代码如下
item = new HttpItem()
{
URL = "http://flights.ctrip.com/booking/DSN-DLC-day-1.html",//URL 必需项
Method = "post",//URL 可选项 默认为Get
IsToLower = false,//得到的HTML代码是否转成小写 可选项默认转小写
Cookie = "",//字符串Cookie 可选项
Referer = "",//来源URL 可选项
Postdata = "DCityName1=%B6%F5%B6%FB%B6%E0%CB%B9%28DSN%29&ACityName1=%B4%F3%C1%AC%28DLC%29&DDate1=2015-03-26&ReturnDate1=&ACityName2=&DDate2=&PassengerQuantity=1&PassengerType=ADU&ClassType=&DCity1=DSN&ACity1=DLC&DCity2=&ACity2=",//Post数据 可选项GET时不需要写
Timeout = 100000,//连接超时时间 可选项默认为100000
ReadWriteTimeout = 30000,//写入Post数据超时时间 可选项默认为30000
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统 可选项有默认值
ContentType = "text/html",//返回类型 可选项有默认值
Allowautoredirect = false,//是否根据301跳转 可选项
ProxyIp = "",//代理服务器ID 可选项 不需要代理 时可以不设置这三个参数
ResultType = ResultType.String,
AutoRedirectCookie =true,
};
item.Allowautoredirect = true;
result = http.GetHtml(item);
string html = result.Html;
cookie = result.Cookie;
string url = result.ResponseUri;
最终定义的链接也是 http://flights.ctrip.com/booking/DSN-DLC-day-1.html ,html中没有机票信息,POST以后,直接GET http://flights.ctrip.com/domesti ... 0648146236964826712 请求内容为空,机票信息在此页面的 JSON内容中,怎么才能获取到这个页面?怎么获取其中的JSON?
拜大神 |
|