加了ResultCookieType = ResultCookieType.CookieCollection 返回的HTML 仍然 是
<title>您要操作的版面不存在-网易跟贴</title>,然后 刷新 未见 跟帖 内容。
[C#] 纯文本查看 复制代码 public string LogOn(string username ,string pwd)
{
string html = string.Empty;
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = _loginurl,
Method = "POST",
Referer = "http://reg.163.com/",
Postdata = string.Format("type=1&product=urs&url=&url2=http://reg.163.com/UserLogin.do&username={0}&password={1}", username, pwd),
ContentType = "application/x-www-form-urlencoded",
ProxyIp ="",
ResultCookieType = ResultCookieType.CookieCollection,
};
HttpResult result = http.GetHtml(item);
item = new HttpItem()
{
URL = "http://comment.tech.163.com/reply/dopost.jsp",
Method = "POST",
Referer = "http://comment.tech.163.com/tech_bbs/9QV539UJ000915BF.html",
CookieCollection = result.CookieCollection,
PostdataByte = Encoding.Default.GetBytes("board=tech_bbs"e=&threadid=9QV539UJ000915BF&hidename=false&username=&body=哦。&isTinyBlogSyn=1&flag=&validateCode=0"),
ContentType = "application/x-www-form-urlencoded",
ProxyIp = "",
Host = "comment.tech.163.com",
ResultCookieType = ResultCookieType.CookieCollection,
};
result = http.GetHtml(item);
return result.Html;
} |