zoukankan      html  css  js  c++  java
  • C# : WebRequest发起Http Post请求模拟登陆并cookie处理示例

    代码
    CookieContainer cc=new CookieContainer();
    string url = “http://mailbeta.263.net/xmweb”;
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
    request.Method 
    = “POST”;
    request.ContentType 
    = “application/x-www-form-urlencoded”;
    request.CookieContainer
    =cc;
    string user=”user”; //用户名
    string pass=”pass”; //密码
    string data = “func=login&usr=” + HttpUtility.UrlEncode(user) +&sel_domain=263.net&domain=263.net&pass=” +HttpUtility.UrlEncode(pass) +&image2.x=0&image2.y=0&verifypcookie=&verifypip=”;
    request.ContentLength 
    = data.Length;
    StreamWriter writer 
    = new StreamWriter(request.GetRequestStream(),Encoding.ASCII);
    writer.Write(data);
    writer.Flush();
    HttpWebResponse response 
    = (HttpWebResponse)request.GetResponse();
    string encoding = response.ContentEncoding;
    if (encoding == null || encoding.Length < 1) {
        encoding 
    = "UTF-8"//默认编码
    }
    StreamReader reader 
    = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(encoding));
    data 
    = reader.ReadToEnd();
    Console.WriteLine(data);
    response.Close();

    int index=data.IndexOf("sid=");
    string sid=data.Substring(index+4,data.IndexOf("&",index)-index-4);
    Console.WriteLine(sid);

    url 
    ="http://wm11.263.net/xmweb?func=mlst&act=show&usr="+user+"&sid="+sid+"&fid=1&desc=1&pg=1&searchword=&searchtype=&searchsub=&searchfd=&sort=4";
    request 
    = (HttpWebRequest)WebRequest.Create(url);
    request.CookieContainer 
    = cc;
    foreach(Cookie cookie in response.Cookies) {
        cc.Add(cookie);
    }
    response 
    = (HttpWebResponse)request.GetResponse();
    encoding 
    = response.ContentEncoding;
    if (encoding == null || encoding.Length < 1) {
        encoding 
    = "UTF-8"//默认编码
    }
    reader 
    = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(encoding));
    data 
    = reader.ReadToEnd();
    Console.WriteLine(data);
    response.Close();

    以上模拟登陆263邮箱,

    //post时,自动跳转与否??

     request.AllowAutoRedirect = true;

  • 相关阅读:
    MySQL数据库的创建&删除&选择
    JS实现异步的几种方式
    十种排序算法实例说明总结
    常用的bug管理工具
    Bootstrap+Hbuilder
    从菜鸟的视角看测试!
    安装numpy和matplotlib
    Eclipse在线安装svn
    重新打个招呼
    <USACO09JAN>气象测量/气象牛The Baric Bovineの思路
  • 原文地址:https://www.cnblogs.com/Fooo/p/1848568.html
Copyright © 2011-2022 走看看