91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

java實現手機短信驗證全過程

發布時間:2020-06-27 21:54:03 來源:網絡 閱讀:1064 作者:歐陽思海 欄目:開發技術

手機短信驗證現在在各種系統可以說都是用的非常普遍的,這個可能是方便和安全性的考慮,所以才廣泛的使用,這篇文章就以一個短信接口的實例,來講解一下怎么使用短信接口。

一、前期工作

首先,我們需要選定一家短信接口的公司,然后去注冊和獲取一系列的ID等,然后就可以正式的創建我們的短信業務了。下面以某個短信接口為例講解。

1.1、注冊

http://www.miaodiyun.com/index.html(對于用哪個平臺的看個人,這個只是實例)

1.2、獲取到ACCOUNT SID和AUTH TOKEN

java實現手機短信驗證全過程cdn.xitu.io/2018/6/16/16408d9332b919d4?w=663&h=185&f=png&s=16494">

1.3、創建短信模板

java實現手機短信驗證全過程

如上圖,點擊配置管理,然后進入到短信模板,再點擊新建模板,創建好你的短信模板

下面給出我的模板作為參考。
java實現手機短信驗證全過程

注意:上面創建的短信模板的信息,需要在代碼中用到,并且一定需要保持一致,否則,會出現異常。

例如,上面的短信模板的信息應為:“【歐陽科技】登錄驗證碼:{1},如非本人操作,請忽略此短信。”,{1}為占位符,是你的短信驗證碼

好了,有了這些準備之后,就可以開始發短信了。

二、具體代碼

config.java:
這個類主要是一些常亮參數的配置信息。

這里我們需要修改我們注冊時獲取到的ACCOUNT SIDAUTH TOKEN


/**
 * 系統常量
 */
public class Config
{
    /**
     * url前半部分
     */
    public static final String BASE_URL = "https://api.miaodiyun.com/20150822";

    /**
     * 開發者注冊后系統自動生成的賬號,可在官網登錄后查看
     */
    public static final String ACCOUNT_SID = "aac6e373c7534007bf47648ba34ba2f1";

    /**
     * 開發者注冊后系統自動生成的TOKEN,可在官網登錄后查看
     */
    public static final String AUTH_TOKEN = "47605360a97a4f81bcd576e8e0645edf";

    /**
     * 響應數據類型, JSON或XML
     */
    public static final String RESP_DATA_TYPE = "json";
}

HttpUtil.java(http請求工具):


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.apache.commons.codec.digest.DigestUtils;

/**
 * http請求工具
 */
public class HttpUtil
{
    /**
     * 構造通用參數timestamp、sig和respDataType
     * 
     * @return
     */
    public static String createCommonParam()
    {
        // 時間戳
        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
        String timestamp = sdf.format(new Date());

        // 簽名
        String sig = DigestUtils.md5Hex(Config.ACCOUNT_SID + Config.AUTH_TOKEN + timestamp);

        return "&timestamp=" + timestamp + "&sig=" + sig + "&respDataType=" + Config.RESP_DATA_TYPE;
    }

    /**
     * post請求
     * 
     * @param url
     *            功能和操作
     * @param body
     *            要post的數據
     * @return
     * @throws IOException
     */
    public static String post(String url, String body)
    {
        System.out.println("url:" + System.lineSeparator() + url);
        System.out.println("body:" + System.lineSeparator() + body);

        String result = "";
        try
        {
            OutputStreamWriter out = null;
            BufferedReader in = null;
            URL realUrl = new URL(url);
            URLConnection conn = realUrl.openConnection();

            // 設置連接參數
            conn.setDoOutput(true);
            conn.setDoInput(true);
            conn.setConnectTimeout(5000);
            conn.setReadTimeout(20000);
            conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            // 提交數據
            out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8");
            out.write(body);
            out.flush();

            // 讀取返回數據
            in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8"));
            String line = "";
            boolean firstLine = true; // 讀第一行不加換行符
            while ((line = in.readLine()) != null)
            {
                if (firstLine)
                {
                    firstLine = false;
                } else
                {
                    result += System.lineSeparator();
                }
                result += line;
            }
        } catch (Exception e)
        {
            e.printStackTrace();
        }
        return result;
    }

    /**
     * 回調測試工具方法
     * 
     * @param url
     * @param reqStr
     * @return
     */
    public static String postHuiDiao(String url, String body)
    {
        String result = "";
        try
        {
            OutputStreamWriter out = null;
            BufferedReader in = null;
            URL realUrl = new URL(url);
            URLConnection conn = realUrl.openConnection();

            // 設置連接參數
            conn.setDoOutput(true);
            conn.setDoInput(true);
            conn.setConnectTimeout(5000);
            conn.setReadTimeout(20000);

            // 提交數據
            out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8");
            out.write(body);
            out.flush();

            // 讀取返回數據
            in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8"));
            String line = "";
            boolean firstLine = true; // 讀第一行不加換行符
            while ((line = in.readLine()) != null)
            {
                if (firstLine)
                {
                    firstLine = false;
                } else
                {
                    result += System.lineSeparator();
                }
                result += line;
            }
        } catch (Exception e)
        {
            e.printStackTrace();
        }
        return result;
    }
}

驗證碼通知短信接口:(最重要)
這里需要修改我們在注冊時獲取到的信息。

  • 修改smsContent
    把這個短信的內容修改為你創建的短信模板
    注意:一定要保持一致。
    
    import java.net.URLEncoder;

import com.miaodiyun.httpApiDemo.common.Config;
import com.miaodiyun.httpApiDemo.common.HttpUtil;

/**

  • 驗證碼通知短信接口
  • @ClassName: IndustrySMS
  • @Description: 驗證碼通知短信接口
  • */
    public class IndustrySMS
    {
    private static String operation = "/industrySMS/sendSMS";

    private static String accountSid = Config.ACCOUNT_SID;
    private static String to = "13767441759";

    private static String code = smsCode();
    // 登錄驗證碼:{1},如非本人操作,請忽略此短信。
    private static String smsContent = "【歐陽科技】登錄驗證碼:"+code+",如非本人操作,請忽略此短信。";

    /**

    • 驗證碼通知短信
      */
      public static void execute()
      {
      String tmpSmsContent = null;
      try{
      tmpSmsContent = URLEncoder.encode(smsContent, "UTF-8");
      }catch(Exception e){

      }
      String url = Config.BASE_URL + operation;
      String body = "accountSid=" + accountSid + "&to=" + to + "&smsContent=" + tmpSmsContent

      • HttpUtil.createCommonParam();

      // 提交請求
      String result = HttpUtil.post(url, body);
      System.out.println("result:" + System.lineSeparator() + result);
      }

    //創建驗證碼
    public static String smsCode(){
    String random=(int)((Math.random()9+1)100000)+"";
    System.out.println("驗證碼:"+random);
    return random;
    }
    }


上面這些是主要的類,還有其他的類在文章末尾給出源代碼。

### 三、手機短信驗證測試

public class Test
{

/**
 * @param args
 */
public static void main(String[] args)
{

    // 驗證碼通知短信接口
     IndustrySMS.execute();

}

}



##### 源代碼下載
https://download.csdn.net/download/sihai12345/10472391

>文章有不當之處,歡迎指正,如果喜歡微信閱讀,你也可以關注我的微信公眾號:`好好學java`,獲取優質學習資源。
向AI問一下細節

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

AI

汝城县| 新源县| 怀集县| 兴安盟| 巨野县| 绥中县| 宁夏| 乐山市| 清水河县| 佛学| 常宁市| 体育| 海阳市| 保德县| 宜昌市| 萨嘎县| 凤台县| 余庆县| 潼关县| 长岭县| 郁南县| 伊宁县| 乃东县| 报价| 拉孜县| 昌都县| 循化| 黔西县| 乌鲁木齐市| 甘谷县| 敦煌市| 郸城县| 望江县| 石林| 天柱县| 花垣县| 瓮安县| 太仓市| 垣曲县| 扶绥县| 和平区|