zoukankan      html  css  js  c++  java
  • C# Http短信接口的调用~~~~~~~~

    短信平台接口调用实现: 

    private void SendSMS(string phone)         {

                string content = "";

                content = HttpUtility.UrlEncode(content, System.Text.Encoding.GetEncoding("UTF-8"));        

                string account = "test";         //短信平台用户的名称

                string pass = "123";             //短信平台 用户的密码

                string uid = "1289";            //短信平台用户的ID号

                string url = "URL?action=send&userid=" + uid + "&account=" + account + "&password=" + pass + "&mobile=" + phone + "&content=" + content + "&sendTime=&checkcontent=0";

                WebRequest wRequest = WebRequest.Create(url);

                WebResponse wResponse = wRequest.GetResponse();

                Stream stream = wResponse.GetResponseStream();

                StreamReader reader = new StreamReader(stream, System.Text.Encoding.Default);

                string r = reader.ReadToEnd();

                wResponse.Close();         }

    永远也不要消极地认为做什么事是不可能的,只要你认 为你能, 尝试, 尝试, 再尝试, 最终你都发现你能。
  • 相关阅读:
    JIRA 6.3.6安装
    Mac安装Protobuf
    Linux 磁盘测速
    rsync快速删除海量文件
    Linux 修改主机名
    查看java进程中哪个线程在消耗系统资源
    redis安装
    springmvc返回中文乱码问题
    java.lang.NumberFormatException: multiple points问题
    谈谈java多线程(一)
  • 原文地址:https://www.cnblogs.com/zhangmu/p/3556994.html
Copyright © 2011-2022 走看看