http://www.sufeinet.com/plugin.php?id=keke_group

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

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

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

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

查看: 13935|回复: 2

[HttpHelper] post时缺少部分Cookie

[复制链接]
发表于 2017-10-25 13:23:35 | 显示全部楼层 |阅读模式
本帖最后由 moodxiang 于 2017-10-25 13:24 编辑

出现的问题:
    第一次获取验证码图片和验证验证码是否正确都能正确返回,但第一次验证验证码是否正确时缺少Cookie:“route”
    第二次获取验证码图片和验证验证码是否正确就会出现服务器内部错误,且验证验证码是否正确时缺少Cookie:“JSESSIONID”
   请高手给指点下

1、获取验证码图片代码:
      /// <summary>
      /// 获取验证码图片
      /// </summary>
      /// <returns>验证码图片</returns>
      public static Image getVerificationCodeImg() {
         HttpHelper http = new HttpHelper();
         HttpItem item = new HttpItem() {
            //URL = "http://passport.ec.chng.com.cn/samhnec/verificationCode.do?" + GetTimestamp(),
            URL = "http://passport.ec.chng.com.cn/samhnec/verificationCode.do",
            Method = "get",
            CookieCollection = mCookies,
            KeepAlive = true,
            Host = "passport.ec.chng.com.cn",
            Accept = "image/webp,image/apng,image/*,*/*;q=0.8",
            Referer = "http://passport.ec.chng.com.cn/samhnec/process.do?action=authuser",
            UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36",
            ResultCookieType = ResultCookieType.CookieCollection,
            ResultType = ResultType.Byte
         };

         item.Header.Add("Cache-Control:no-cache");
         item.Header.Add("Origin:http://passport.ec.chng.com.cn");
         item.Header.Add("ragma:no-cache");
         item.Header.Add("Accept-Language:zh-CN,zh;q=0.8");
         item.Header.Add("Accept-Encoding:gzip, deflate");
         item.Header.Add("Cache-Control:no-cache");
         item.Header.Add("Origin:http://passport.ec.chng.com.cn");
         item.Header.Add("ragma:no-cache");
         item.Header.Add("X-Requested-With:XMLHttpRequest");
         // 获取数据
         HttpResult result = http.GetHtml(item);
         if (result.CookieCollection != null && result.CookieCollection.Count > 0) {
            mCookies.Add(result.CookieCollection);
         }
         if (result.StatusCode == HttpStatusCode.OK) {
            return byteArrayToImage(result.ResultByte);
         } else {
            return null;
         }
      }
抓包:
GET /samhnec/verificationCode.do HTTP/1.1
Cache-Control: no-cache,no-cache
Origin: http://passport.ec.chng.com.cn,http://passport.ec.chng.com.cn
Pragma: no-cache,no-cache
Accept-Language: zh-CN,zh;q=0.8
Accept-Encoding: gzip, deflate
X-Requested-With: XMLHttpRequest
Accept: image/webp,image/apng,image/*,*/*;q=0.8
Content-Type: text/html
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36
Referer: http://passport.ec.chng.com.cn/samhnec/process.do?action=authuser
Host: passport.ec.chng.com.cn
Connection: Keep-Alive



HTTP/1.1 200 OK
Date: Wed, 25 Oct 2017 04:33:03 GMT
Content-Type: image/jpeg;charset=UTF-8
Connection: keep-alive
Pragma: No-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Language: zh-CN
Set-Cookie: SERVERID=260084a345d85ee7357c9e8fce2cdd9e|1508905983|1508905983ath=/
Set-Cookie: route=47fe9dfb656fc2cb27e6223747033dbb
Set-Cookie: JSESSIONID=29C30E7321D1BDCC8D04CFDF4BBD7889; Path=/samhnec/; HttpOnly

Content-Length: 2345


2、验证验证码是否正确代码:

      /// <summary>
      /// 检查验证码正确性
      /// </summary>
      /// <param name="verificationCode">验证码</param>
      /// <returns>正确返回true,错误返回false</returns>
      public static bool validateCode(string verificationCode) {
         HttpHelper http = new HttpHelper();
         HttpItem item = new HttpItem() {
            URL = "http://passport.ec.chng.com.cn/samhnec/validateCode.do",
            Method = "post",
            CookieCollection = mCookies,
            Postdata = "validateCode=" + verificationCode,
            Accept = "text/plain, */*; q=0.01",
            Referer = "http://passport.ec.chng.com.cn/samhnec/process.do?action=authuser",
            Encoding = Encoding.UTF8,
            KeepAlive = true,
            Host = "passport.ec.chng.com.cn",
            ContentType = "application/x-www-form-urlencoded; charset=UTF-8",
            UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36",
            ResultCookieType = ResultCookieType.CookieCollection,
            ResultType = ResultType.String
         };
         item.Header.Add("Accept-Encoding:gzip, deflate");
         item.Header.Add("Accept-Language:zh-CN,zh;q=0.8");
         item.Header.Add("Cache-Control:no-cache");
         item.Header.Add("Origin:http://passport.ec.chng.com.cn");
         item.Header.Add("ragma:no-cache");
         item.Header.Add("X-Requested-With:XMLHttpRequest");
         // 获取数据
         HttpResult result = http.GetHtml(item);
         if (result.CookieCollection != null && result.CookieCollection.Count > 0) {
            mCookies.Add(result.CookieCollection);
         }
         if (result.StatusCode == HttpStatusCode.OK) {
            if (result.Html.Equals("fail")) {
               return false;
            } else {
               return true;
            }
         } else {
            System.Windows.Forms.MessageBox.Show("Test");
            return false;
         }
      }

抓包:
POST /samhnec/validateCode.do HTTP/1.1
Accept-Encoding: gzip, deflate
Accept-Language: zh-CN,zh;q=0.8
Cache-Control: no-cache
Origin: http://passport.ec.chng.com.cn
Pragma: no-cache
X-Requested-With: XMLHttpRequest
Accept: text/plain, */*; q=0.01
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36
Referer: http://passport.ec.chng.com.cn/samhnec/process.do?action=authuser
Host: passport.ec.chng.com.cn
Cookie: JSESSIONID=29C30E7321D1BDCC8D04CFDF4BBD7889; SERVERID=260084a345d85ee7357c9e8fce2cdd9e|1508905983|1508905983
Content-Length: 17

validateCode=m2u9



HTTP/1.1 200 OK
Date: Wed, 25 Oct 2017 04:33:10 GMT
Content-Type: text/plain;charset=ISO-8859-1
Connection: keep-alive
Set-Cookie: route=47fe9dfb656fc2cb27e6223747033dbb
Set-Cookie: SERVERID=260084a345d85ee7357c9e8fce2cdd9e|1508905990|1508905983ath=/
Content-Length: 7

success




1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2017-10-25 13:35:09 | 显示全部楼层
打不开
回复

使用道具 举报

发表于 2017-10-25 14:19:26 | 显示全部楼层
路过路过
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

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

GMT+8, 2024-11-22 18:14

© 2014-2021

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