苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 17824|回复: 11

网易跟帖

[复制链接]
发表于 2014-5-2 11:41:15 | 显示全部楼层 |阅读模式
提需求
联系方式: 121795858
金额: 10 元
1、我已使用httphelper 1.45 登录 网易,并取得了 cookie,但是 使用 该cookie 跟帖的时候,总是 无法成功跟帖,程序未报错。
将此问题 解决,并成功跟帖,奖励 10元。

代码贴上

        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 =""
            };
            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",
                Cookie = result.Cookie,
                // Postdata = "board=tech_bbs"e=&threadid=9QV539UJ000915BF&hidename=false&username=&body=" + URLEncode("哦。") + "&isTinyBlogSyn=1&flag=&validateCode=0",
                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"
            };
            result = http.GetHtml(item);
            return result.Html;


        }



1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2014-5-2 11:43:36 | 显示全部楼层
换成CookieCollection格式的Cookie应该就可以了。http://www.sufeinet.com/thread-3-1-1.html看文章的最后
 楼主| 发表于 2014-5-2 11:51:46 | 显示全部楼层
更换了,跟帖 仍为成功,返回 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&quote=&threadid=9QV539UJ000915BF&hidename=false&username=&body=哦。&isTinyBlogSyn=1&flag=&validateCode=0"),
                ContentType = "application/x-www-form-urlencoded",
                ProxyIp = "",
                Host = "comment.tech.163.com"
            };
            result = http.GetHtml(item);
            return result.Html;


        }
发表于 2014-5-2 11:54:10 | 显示全部楼层
下面并没有加ResultCookieType = ResultCookieType.CookieCollection,这一句吧。
 楼主| 发表于 2014-5-2 11:59:18 | 显示全部楼层
加了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&quote=&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;
        }
 楼主| 发表于 2014-5-2 12:03:02 | 显示全部楼层
本帖最后由 wanliqiufeng 于 2014-5-2 12:04 编辑

抓包截图如下   抓包 跟帖过程有 4步  ,前两次是GET 第 3次是  POST,我直接 用的第三次 的  POST

抓包截图

抓包截图
发表于 2014-5-2 12:06:54 | 显示全部楼层
QQ截图20140502120622.jpg
 楼主| 发表于 2014-5-2 12:34:23 | 显示全部楼层
我把测试代码 放上来,你看看 什么 原因,仍然 跟帖不成功,返回 html 为
<title>您要操作的版面不存在-网易跟贴</title>

界面截图

界面截图

wangyitest.rar

67.28 KB, 下载次数: 44

测试代码

 楼主| 发表于 2014-5-2 12:52:53 | 显示全部楼层
谁能解救,涨价到  30元。
 楼主| 发表于 2014-5-2 14:18:41 | 显示全部楼层
感谢 ♂JUST DO IT  ,问题已解决。。
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2025-4-5 22:53

© 2014-2021

快速回复 返回顶部 返回列表