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

  • 相关阅读:
    远程桌面无法复制粘贴
    tns no listener
    10046 trace and sql
    MySQL replace into 用法(insert into 的增强版)
    USB接口大百科:看完你就分得清充电线了
    世界富人的财富诀窍
    php 23种设计模式的趣味解释
    23种设计模式
    设计模式的分类记忆方法
    项目管理基础:考试必过神之冲刺背诵口诀精简
  • 原文地址:https://www.cnblogs.com/yyangjing/p/7551293.html
Copyright © 2011-2022 走看看