zoukankan      html  css  js  c++  java
  • 微信获取短信验证码

    //发送验证码

    string param = "action=send&userid=****&account=******password=***&content=" + "【签名】+内容+ "&mobile=" 手机号 "&sendtime=";
    if (CheckBox1.Checked)//是否定时发送
    {
    param = param + TextBox4.Text; //
    }
    else
    {
    param = param + "";//不需要定时发送,也需要带上""
    }
    byte[] bs = Encoding.UTF8.GetBytes(param);

    HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create("http://client.movek.net:8888/sms.aspx?"+param);
    req.Method = "POST";
    req.ContentType = "application/x-www-form-urlencoded";
    req.ContentLength = bs.Length;

    using (Stream reqStream = req.GetRequestStream())
    {
    reqStream.Write(bs, 0, bs.Length);
    }
    using (WebResponse wr = req.GetResponse())
    {
    StreamReader sr = new StreamReader(wr.GetResponseStream(), System.Text.Encoding.UTF8);

    TextBox3.Text = sr.ReadToEnd().Trim();
    }

    //查询余额

    string param = "userid=****&account=********&password=****&action=overage";
    byte[] bs = Encoding.UTF8.GetBytes(param);

    HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create("http://client.movek.net:8888/sms.aspx?" + param);
    req.Method = "POST";
    req.ContentType = "application/x-www-form-urlencoded";
    req.ContentLength = bs.Length;

    using (Stream reqStream = req.GetRequestStream())
    {
    reqStream.Write(bs, 0, bs.Length);
    }
    using (WebResponse wr = req.GetResponse())
    {
    StreamReader sr = new StreamReader(wr.GetResponseStream(), System.Text.Encoding.UTF8);

    TextBox3.Text = sr.ReadToEnd().Trim();
    }

  • 相关阅读:
    权限设计 【数据库和代码】 GO
    sql读取指定字符前的字符 GO
    C#编码建议 GO
    网页鼠标提示 GO
    ASP.NET设置ie打印两法 GO
    正则表达式入门教程 GO
    一个初学者对ArrayAdapter的简单理解
    泛型的简单理解
    SQL Server死锁详解
    .NET代理模式
  • 原文地址:https://www.cnblogs.com/yyangjing/p/7551293.html
Copyright © 2011-2022 走看看