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

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

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

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

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

查看: 9982|回复: 7

[其他] (12306)大神啊,httphelper怎么既获取图片又获取cookie呢而且图片也要和cookie一致

[复制链接]
发表于 2014-1-3 23:04:13 | 显示全部楼层 |阅读模式
12306api
1.https://kyfw.12306.cn/otn/passcodeNew/getPassCodeNew?module=login&rand=sjrand这是获取验证码的

2.https://kyfw.12306.cn/otn/login/loginAysnSuggest?loginUserDTO.user_name=用户名&userDTO.password=密码&randCode=验证码

2.https://kyfw.12306.cn/otn/index/initMy12306如果返回的json  message为空的话也就是登录成功了就可以到主界面了


但是我现在的问题就是拿httphelper获取可以获取到cookie但是验证码就获取不到。我拿开发助手的cookie提取器模拟我的操作是完全登录成功的
QQ图片20140103230345.jpg


1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2014-1-4 07:46:25 | 显示全部楼层
你搜12306我写的有
 楼主| 发表于 2014-1-4 15:23:58 | 显示全部楼层

现在获取验证码不需要证书了,但是获取到的result.ResultByte是空的。所以图片是显示不了的
 楼主| 发表于 2014-1-4 15:26:21 | 显示全部楼层

好了现在行了。{:soso_e101:}刚刚粗心了。
发表于 2014-1-4 15:26:29 | 显示全部楼层
发表于 2014-1-4 15:27:04 | 显示全部楼层
哦好的,是不是我上面发的参数没有配置
 楼主| 发表于 2014-1-4 16:18:26 | 显示全部楼层
站长苏飞 发表于 2014-1-4 15:27
哦好的,是不是我上面发的参数没有配置

嗯,但是我还有个问题,我获取到了验证码然后在登录的时候我把cookie设置好了,验证码也对的。但是也会报cookie错误。返回出来的cookie和设置的cookie完全不同。
 楼主| 发表于 2014-1-4 16:49:22 | 显示全部楼层
[C#] 纯文本查看 复制代码
public class _12306api
    {
         HttpHelper http = new HttpHelper();
         HttpItem item = null;
         string cookie = "";
       public Image getcodeimg() 
       {
           http = new HttpHelper();
           item = new HttpItem()
           {
               URL = "https://kyfw.12306.cn/otn/passcodeNew/getPassCodeNew?module=login&rand=sjrand",//URL     必需项    
               Method = "get",//URL     可选项 默认为Get   
               IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写   
               UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值   
               ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
               ResultType = ResultType.Byte
           };
           HttpResult result = http.GetHtml(item);
           cookie = result.Cookie;
           Image code=byteArrayToImage(result.ResultByte);
           return code;
       }
       private Image byteArrayToImage(byte[] Bytes)
       {
           MemoryStream ms = new MemoryStream(Bytes);
           Image outputImg = Image.FromStream(ms);
           return outputImg;
       }
       public string Login(string user,string pwd,string randcode) 
       {
            http = new HttpHelper(); 
            item = new HttpItem()
           {
               URL = "https://kyfw.12306.cn/otn/login/loginAysnSuggest?loginUserDTO.user_name=" + user + "&userDTO.password=" + pwd + "&randCode=" + randcode + "",//URL     必需项    
               Method = "get",//URL     可选项 默认为Get   
               IsToLower = false,//得到的HTML代码是否转成小写     可选项默认转小写   
               Cookie = cookie,
               UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统     可选项有默认值   
               ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
           };
           HttpResult result = http.GetHtml(item);
           string html = result.Html;
            return html;
       }
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

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

GMT+8, 2024-11-23 20:55

© 2014-2021

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