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

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

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

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

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

查看: 4065|回复: 3

[咨询站长] 用了打码平台的插件get验证码接受的数据转byte不成功 站长救命

[复制链接]
发表于 2017-11-14 22:17:52 | 显示全部楼层 |阅读模式
get后 转成byte类型保存本地的图片也查看不了  应该是代码错了 不知道怎么写 求解


using System;
using System.Text;
using System.Net;
using System.IO;
using FastVerCode;
using System.Net;


namespace ConsoleApp17
{
    class Program
    {
        public static CookieContainer mycookie=new CookieContainer();
        static void Main(string[] args)
        {
            Console.Write(code("http://www.606yl.com/vcode.php?v=1423393581", "www.606yl.com"));
        }
        public static string  code(string url,string host)
        {
            HttpWebRequest http = (HttpWebRequest)WebRequest.Create(url);
            http.Method = "GET";
            http.Accept = "image/webp,image/apng,image/*,*/*;q=0.8";
            http.Host = host;
            http.Referer = "http://www.606yl.com/reg.html";
            http.CookieContainer = mycookie;
            HttpWebResponse re = (HttpWebResponse)http.GetResponse();
            foreach (Cookie cookie in re.Cookies)
            mycookie.SetCookies(new Uri(url), ("" + cookie.Name + "=" + cookie.Value));
            StreamReader item = new StreamReader(re.GetResponseStream(), Encoding.Default);
            string username = "***";
            string pwd = "***";
            string softKey = "***";
            //获取用户信息
            string userInfo = VerCode.GetUserInfo(username, pwd);
            byte[] bytes = Encoding.Default.GetBytes(item.ReadToEnd()); /////应该就是这里的问题 但是不知道怎么解决 获取的方式不正确吗?
            //上传字节集验证码
            string returnMess = VerCode.RecByte_A(bytes, bytes.Length, username, pwd, softKey);
            //上传本地验证码
            System.Diagnostics.Debug.WriteLine(returnMess);
            return returnMess;
        }
    }
}




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

使用道具 举报

发表于 2017-11-15 11:05:02 | 显示全部楼层
路过看看,怎么解决的,给个答案,大家学习下呗
发表于 2017-11-15 20:26:43 | 显示全部楼层
这周出差,只要提取的正常应该不会。
直接使用Httphelper的Byte获取就行了,不需要自己转换
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

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

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

© 2014-2021

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