本帖最后由 Have_A_Dream 于 2014-9-10 20:06 编辑
@站长苏飞 我现在做的这个网站post,也是报这个错,根据教程设置后依然如此
抓包工具抓包信息
[C#] 纯文本查看 复制代码 HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = url4,//URL 必需项
Method = "POST",//URL 可选项 默认为Get
IsToLower = false,//得到的HTML代码是否转成小写 可选项默认转小写
Cookie = setcookie,//字符串Cookie 可选项
Postdata = buf,//Post数据 可选项GET时不需要写
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统 可选项有默认值
ContentType = "application/x-www-form-urlencoded",//返回类型 可选项有默认值
Allowautoredirect = true,//是否根据301跳转 可选项
ProxyIp = IP,//代理服务器ID 可选项 不需要代理 时可以不设置这三个参数
ResultType = ResultType.String
};
//item.Header.Add("x-requested-with", "XMLHttpRequest");
//System.Net.ServicePointManager.Expect100Continue = false;
HttpResult result = http.GetHtml(item);
string html = result.Html;
string cookie = result.Cookie;
|