中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何開發手機短信驗證碼接口

發布時間:2021-07-23 11:31:40 來源:億速云 閱讀:121 作者:小新 欄目:編程語言

小編給大家分享一下C#如何開發手機短信驗證碼接口,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

#region 獲取手機驗證碼(創藍253)
  /// <summary>
  /// 獲取手機驗證碼(創藍253)
  /// </summary>
  /// <param name="phoneno">手機號</param>
  /// <returns></returns>
  [AllowAnonymous]
  public async Task<IHttpActionResult> GetPhoneCode(string phoneno)
  {
   string account = "******", password = "******", mobile = phoneno;
   Random rd = new Random(); int r = rd.Next(100000, 999999);
   string content = "【您的簽名】"+"尊敬的客戶:您的驗證碼為" + r + "!";
   string postStrTpl = "un={0}&pw={1}&phone={2}&msg={3}&rd=1";
   UTF8Encoding encoding = new UTF8Encoding();
   byte[] postData = encoding.GetBytes(string.Format(postStrTpl, account, password, mobile, content));
   HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create("http://sms.253.com/msg/send");
   myRequest.Method = "POST";
   myRequest.ContentType = "application/x-www-form-urlencoded";
   myRequest.ContentLength = postData.Length;
   Stream newStream = myRequest.GetRequestStream();
   newStream.Write(postData, 0, postData.Length);
   newStream.Flush();
   newStream.Close();
   HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
   if (myResponse.StatusCode == HttpStatusCode.OK)
   {
    return Ok(new { code = "200", res = new { msg = "短信發送成功!", data = new { code = r } } });
   }
   else {
    return Ok(new { code = "400", res = new { msg = "短信發送失敗!" } });
   }
  }
  #endregion

以上是“C#如何開發手機短信驗證碼接口”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

崇阳县| 开化县| 孟津县| 张家川| 克拉玛依市| 宜州市| 公安县| 婺源县| 阿荣旗| 湖南省| 巴彦县| 顺义区| 杂多县| 方城县| 宜黄县| 迭部县| 枝江市| 噶尔县| 桦甸市| 衡南县| 乌鲁木齐市| 华容县| 永昌县| 潍坊市| 德保县| 蒲江县| 班玛县| 施甸县| 普兰县| 巩留县| 仲巴县| 阳西县| 隆林| 来宾市| 陆良县| 淮南市| 墨玉县| 喀什市| 慈溪市| 唐海县| 锡林浩特市|