国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#代碼實現(xiàn)短信驗證碼接口示例

2019-10-29 21:23:01
字體:
供稿:網(wǎng)友

本文實例為大家分享了C#實現(xiàn)短信驗證碼接口示例,供大家參考,具體內(nèi)容如下

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Security; using System.Security.Cryptography.X509Certificates; using System.Net; using System.IO; using System.IO.Compression; using System.Text.RegularExpressions; using System.Security.Cryptography;using System.Web;public class Test{    private static readonly string DefaultUserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";      private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)     {       return true; //總是接受       }    static void Main(string[] args)     {       DateTime dt = DateTime.Now;       string mttime = dt.ToString("yyyyMMddHHmmss");      string pwd1 = "*************"+mttime;   string pwd = GetMD5(pwd1)      string content = "【閱信】驗證碼888888,打死也不能告訴別人哦。";      string url = "http://183.203.28.226:9000/HttpSmsMt";       Encoding encoding = Encoding.GetEncoding("utf-8");       IDictionary<string, string> parameters = new Dictionary<string, string>();       parameters.Add("name", "****");       parameters.Add("pwd", pwd);       parameters.Add("content",content);      parameters.Add("phone","13381272353");      parameters.Add("subid","");      parameters.Add("mttime", mttime);       HttpWebResponse response = CreatePostHttpResponse(url,parameters,encoding);       //打印返回值       Stream stream = response.GetResponseStream();  //獲取響應的字符串流       StreamReader sr = new StreamReader(stream); //創(chuàng)建一個stream讀取流       string html = sr.ReadToEnd();  //從頭讀到尾,放到字符串html       Console.WriteLine(html);      }      public static string GetMD5(string myString)     {      MD5 md5 = new MD5CryptoServiceProvider();      // byte[] fromData = System.Web.HttpUtility.UrlEncode.GetBytes(myString);      byte[] fromData = Encoding.Default.GetBytes(myString);      byte[] targetData = md5.ComputeHash(fromData);      string byte2String = null;      for(int i=0;i<targetData.Length;i++)       {        byte2String+= targetData[i].ToString("x");      }      return byte2String;    }       public static HttpWebResponse CreatePostHttpResponse(string url, IDictionary<string, string> parameters,Encoding charset)     {       HttpWebRequest request = null;       //HTTPSQ請求       ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);       request = WebRequest.Create(url) as HttpWebRequest;       request.ProtocolVersion = HttpVersion.Version10;       request.Method = "POST";       request.ContentType = "application/x-www-form-urlencoded";       request.UserAgent = DefaultUserAgent;       //如果需要POST數(shù)據(jù)         if (!(parameters == null || parameters.Count == 0))       {         StringBuilder buffer = new StringBuilder();         int i = 0;         foreach (string key in parameters.Keys)         {           if (i > 0)           {             buffer.AppendFormat("&{0}={1}", key, parameters[key]);           }           else           {             buffer.AppendFormat("{0}={1}", key, parameters[key]);           }           i++;         }         byte[] data = charset.GetBytes(buffer.ToString());         using (Stream stream = request.GetRequestStream())         {           stream.Write(data, 0, data.Length);         }       }       return request.GetResponse() as HttpWebResponse;     } }

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識閱讀請移步到c#教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 泸定县| 庆安县| 南汇区| 汉沽区| 中宁县| 武平县| 柞水县| 石屏县| 库车县| 高雄县| 张家口市| 招远市| 马山县| 蒲江县| 揭西县| 徐州市| 炉霍县| 刚察县| 泽库县| 喀喇沁旗| 西青区| 河曲县| 理塘县| 墨玉县| 团风县| 富锦市| 六枝特区| 峡江县| 西畴县| 南汇区| 都安| 峨山| 日喀则市| 宜宾市| 玛多县| 仁化县| 新竹县| 福州市| 夏邑县| 冕宁县| 合江县|