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();
    }

  • 相关阅读:
    在Ajax中将数组转换成字符串(0517-am)
    Json,Ajax(0516)
    JQUERY的应用
    php 之 PDO数据访问抽象层(0513)
    php 之 房屋租赁练习(0509)
    MySQL 高级查询
    MySQL简单查询
    MySQL语句
    php 之 查询 投票练习(0508)
    linux查看java jdk jre安装路径和设置环境变量
  • 原文地址:https://www.cnblogs.com/yyangjing/p/7551293.html
Copyright © 2011-2022 走看看