public void QiangGou() { //AppendText(cookies);//打印 HttpHelper http = new HttpHelper(); HttpItem item = new HttpItem() { URL = "http://tc.hd.xiaomi.com/hdget?callback=hdcontrol", UserAgent = "Mozilla/5.0 (Linux; U; Android 4.0.4; zh-cn; MI-ONE C1 Build/IMM76D) UC AppleWebKit/534.31 (KHTML, like Gecko) Mobile Safari/534.31", Host = "tc.hd.xiaomi.com", Cookie = cookies }; HttpResult result = http.GetHtml(item); string strJson = result.Html; if (strJson.Contains("hdcontrol")) { strJson = strJson.Replace("hdcontrol(", "").Replace(")", ""); xiaomiEntity xm = JsonConvert.DeserializeObject<xiaomiEntity>(strJson); bool allow = xm.Status.Allow; string Hdurl = xm.Status.Miphone.Hdurl; if (!string.IsNullOrEmpty(Hdurl)) { string url = "http://t.hd.xiaomi.com/s/" + xm.Status.Miphone.Hdurl + "&_m=1"; if (allow) { lblAllow.Invoke(new Action(delegate() { lblAllow.Text = allow.ToString(); })); txtUrl.Invoke(new Action(delegate() { txtUrl.Text = url; })); TimerStop(); } else { bool allowchecked = false; ckbAllow.Invoke(new Action(delegate() { allowchecked = ckbAllow.Checked; })); if (allowchecked == true) { txtUrl.Invoke(new Action(delegate() { txtUrl.Text = url; })); } } } } else { lblAllow.Invoke(new Action(delegate() { lblAllow.Text = "尚未开放"; })); } }
private void btnLogin_Click(object sender, EventArgs e) { string username = txtUserName.Text; string password = txtPwd.Text; HttpItem itemSign = new HttpItem() { URL = "https://account.xiaomi.com/pass/serviceLogin", }; HttpHelper helperSign = new HttpHelper(); HttpResult resultSign = helperSign.GetHtml(itemSign); string signHtml = resultSign.Html; HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument(); doc.LoadHtml(signHtml); var htmlnodes = doc.DocumentNode.Descendants("input"); Dictionary<string, string> dict = new Dictionary<string, string>(); foreach (var item in htmlnodes) { if (item.Attributes["name"] != null && item.Attributes["value"] != null) { dict.Add(item.Attributes["name"].Value, item.Attributes["value"].Value); } } string passToken = HttpUtility.UrlEncode(dict["passToken"]); string callback = HttpUtility.UrlEncode(dict["callback"]); string sid = HttpUtility.UrlEncode(dict["sid"]); string qs = HttpUtility.UrlEncode(dict["qs"]); string hidden = HttpUtility.UrlEncode(dict["hidden"]); string _sign = HttpUtility.UrlEncode(dict["_sign"]); string auto = HttpUtility.UrlEncode(dict["auto"]); cookies = resultSign.Cookie; HttpItem itemLogin = new HttpItem() //登陆Post { URL = "https://account.xiaomi.com/pass/serviceLoginAuth2", Method = "POST", Cookie = cookies, Referer = "https://account.xiaomi.com/pass/serviceLogin", ContentType = "application/x-www-form-urlencoded", Postdata = string.Format("passToken={0}&user={1}&pwd={2}&callback={3}&sid={4}&qs={5}&hidden={6}&_sign={7}&auto={8}", passToken, username, password, callback, sid, qs, hidden, _sign, auto) }; HttpHelper helperLogin = new HttpHelper(); HttpResult resultLogin = helperLogin.GetHtml(itemLogin); if (resultLogin.Html.Contains("小米帐户 - 登录")) { AppendText(username + "登陆失败\n"); return; } AppendText(username + "登陆成功"); cookies += ";" + resultLogin.Cookie; // AppendText(cookies); }
/// <summary> /// 设置代理 /// </summary> /// <param name="item">参数对象</param> private void SetProxy(HttpItem item) { if (!string.IsNullOrWhiteSpace(item.ProxyIp)) { //设置代理服务器 if (item.ProxyIp.Contains(":")) { string[] plist = item.ProxyIp.Split(':'); WebProxy myProxy = new WebProxy(plist[0].Trim(), Convert.ToInt32(plist[1].Trim())); //建议连接 myProxy.Credentials = new NetworkCredential(item.ProxyUserName, item.ProxyPwd); //给当前请求对象 request.Proxy = myProxy; } else { WebProxy myProxy = new WebProxy(item.ProxyIp, false); //建议连接 myProxy.Credentials = new NetworkCredential(item.ProxyUserName, item.ProxyPwd); //给当前请求对象 request.Proxy = myProxy; } //设置安全凭证 request.Credentials = CredentialCache.DefaultNetworkCredentials; } }
/// <summary> /// 为请求准备参数 /// </summary> ///<param name="item">参数列表</param> private void SetRequest(HttpItem item) { // 验证证书 SetCer(item); //设置Header参数 if (item.Header != null && item.Header.Count > 0) foreach (string key in item.Header.AllKeys) { request.Headers.Add(key, item.Header[key]); } // 设置代理 SetProxy(item); if (item.ProtocolVersion != null) request.ProtocolVersion = item.ProtocolVersion; request.ServicePoint.Expect100Continue = item.Expect100Continue; //请求方式Get或者Post request.Method = item.Method; request.Timeout = item.Timeout; request.KeepAlive = item.KeepAlive; request.ReadWriteTimeout = item.ReadWriteTimeout; if (!string.IsNullOrWhiteSpace(item.Host)) { request.Host = item.Host; } //Accept request.Accept = item.Accept; //ContentType返回类型 request.ContentType = item.ContentType; //UserAgent客户端的访问类型,包括浏览器版本和操作系统信息 request.UserAgent = item.UserAgent; // 编码 encoding = item.Encoding; //设置Cookie SetCookie(item); //来源地址 request.Referer = item.Referer; //是否执行跳转功能 request.AllowAutoRedirect = item.Allowautoredirect; //设置Post数据 SetPostData(item); //设置最大连接 if (item.Connectionlimit > 0) request.ServicePoint.ConnectionLimit = item.Connectionlimit; }
/// <summary> /// 设置Post数据 /// </summary> /// <param name="item">Http参数</param> private void SetPostData(HttpItem item) { //验证在得到结果时是否有传入数据 if (request.Method.Trim().ToLower().Contains("post")) { if (item.PostEncoding != null) { postencoding = item.PostEncoding; } byte[] buffer = null; //写入Byte类型 if (item.PostDataType == PostDataType.Byte && item.PostdataByte != null && item.PostdataByte.Length > 0) { //验证在得到结果时是否有传入数据 buffer = item.PostdataByte; }//写入文件 else if (item.PostDataType == PostDataType.FilePath && !string.IsNullOrWhiteSpace(item.Postdata)) { StreamReader r = new StreamReader(item.Postdata, postencoding); buffer = postencoding.GetBytes(r.ReadToEnd()); r.Close(); } //写入字符串 else if (!string.IsNullOrWhiteSpace(item.Postdata)) { buffer = postencoding.GetBytes(item.Postdata); } if (buffer != null) { request.ContentLength = buffer.Length; request.GetRequestStream().Write(buffer, 0, buffer.Length); } } }
/// <summary> /// 设置Cookie /// </summary> /// <param name="item">Http参数</param> private void SetCookie(HttpItem item) { if (!string.IsNullOrWhiteSpace(item.Cookie)) //Cookie request.Headers[HttpRequestHeader.Cookie] = item.Cookie; //设置Cookie if (item.CookieCollection != null && item.CookieCollection.Count > 0) { request.CookieContainer = new CookieContainer(); request.CookieContainer.Add(item.CookieCollection); } }
/// <summary> /// 设置多个证书 /// </summary> /// <param name="item"></param> private void SetCerList(HttpItem item) { if (item.ClentCertificates != null && item.ClentCertificates.Count > 0) { foreach (X509Certificate c in item.ClentCertificates) { request.ClientCertificates.Add(c); } } }
/// <summary> /// 设置证书 /// </summary> /// <param name="item"></param> private void SetCer(HttpItem item) { if (!string.IsNullOrWhiteSpace(item.CerPath)) { //这一句一定要写在创建连接的前面。使用回调的方法进行证书验证。 ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(CheckValidationResult); //初始化对像,并设置请求的URL地址 request = (HttpWebRequest)WebRequest.Create(item.URL); SetCerList(item); //将证书添加到请求里 request.ClientCertificates.Add(new X509Certificate(item.CerPath)); } else { //初始化对像,并设置请求的URL地址 request = (HttpWebRequest)WebRequest.Create(item.URL); SetCerList(item); } }
/// <summary> /// 根据相传入的数据,得到相应页面数据 /// </summary> /// <param name="item">参数类对象</param> /// <returns>返回HttpResult类型</returns> public HttpResult GetHtml(HttpItem item) { //返回参数 HttpResult result = new HttpResult(); try { //准备参数 SetRequest(item); } catch (Exception ex) { return new HttpResult() { Cookie = string.Empty, Header = null, Html = ex.Message, StatusDescription = "配置参数时出错:" + ex.Message }; } try { #region 得到请求的response if (item.ResultCookieType == ResultCookieType.CookieCollection) request.CookieContainer = new CookieContainer(); using (response = (HttpWebResponse)request.GetResponse()) { result.StatusCode = response.StatusCode; result.StatusDescription = response.StatusDescription; result.Header = response.Headers; if (response.Cookies != null) result.CookieCollection = response.Cookies; if (response.Headers["set-cookie"] != null) result.Cookie = response.Headers["set-cookie"]; byte[] ResponseByte = null; using (MemoryStream _stream = new MemoryStream()) { //GZIIP处理 if (response.ContentEncoding != null && response.ContentEncoding.Equals("gzip", StringComparison.InvariantCultureIgnoreCase)) { //开始读取流并设置编码方式 new GZipStream(response.GetResponseStream(), CompressionMode.Decompress).CopyTo(_stream, 10240); } else { //开始读取流并设置编码方式 response.GetResponseStream().CopyTo(_stream, 10240); } //获取Byte ResponseByte = _stream.ToArray(); } if (ResponseByte != null & ResponseByte.Length > 0) { //是否返回Byte类型数据 if (item.ResultType == ResultType.Byte) result.ResultByte = ResponseByte; //从这里开始我们要无视编码了 if (encoding == null) { Match meta = Regex.Match(Encoding.Default.GetString(ResponseByte), "<meta([^<]*)charset=([^<]*)[\"']", RegexOptions.IgnoreCase); string c = (meta.Groups.Count > 1) ? meta.Groups[2].Value.ToLower().Trim() : string.Empty; if (c.Length > 2) { try { if (c.IndexOf(" ") > 0) c = c.Substring(0, c.IndexOf(" ")); encoding = Encoding.GetEncoding(c.Replace("\"", "").Replace("'", "").Replace(";", "").Replace("iso-8859-1", "gbk").Trim()); } catch { if (string.IsNullOrEmpty(response.CharacterSet)) encoding = Encoding.UTF8; else encoding = Encoding.GetEncoding(response.CharacterSet); } } else { if (string.IsNullOrEmpty(response.CharacterSet)) encoding = Encoding.UTF8; else encoding = Encoding.GetEncoding(response.CharacterSet); } } //得到返回的HTML result.Html = encoding.GetString(ResponseByte); } else { //得到返回的HTML result.Html = "本次请求并未返回任何数据"; } } #endregion } catch (WebException ex) { //这里是在发生异常时返回的错误信息 response = (HttpWebResponse)ex.Response; result.Html = ex.Message; if (response != null) { result.StatusCode = response.StatusCode; result.StatusDescription = response.StatusDescription; } } catch (Exception ex) { result.Html = ex.Message; } if (item.IsToLower) result.Html = result.Html.ToLower(); return result; }