1. 程式人生 > >阿裏大魚短信介入demo分享

阿裏大魚短信介入demo分享

阿裏大魚短信介入demo分享

下面是關於大魚短信平臺對接的例子,發短信的話,可以用這個,很好用

/**
 * 通過阿裏短信接口發送短信驗證碼
 * 
 *
 *
 */
public class SendSmsUtil {
    private static Logger logger = Logger.getLogger(SendSmsUtil.class);
    /**
     * 生成驗證碼
     * @return
     */
    public static String getCaptcha() {
        String str = "0,1,2,3,4,5,6,7,8,9";
        String str2[] = str.split(",");// 將字符串以,分割
        Random rand = new Random();// 創建Random類的對象rand
        int index = 0;
        String randStr = "";// 創建內容為空字符串對象randStr
        randStr = "";// 清空字符串對象randStr中的值
        for (int i = 0; i < 4; ++i) {
            index = rand.nextInt(str2.length - 1);// 在0到str2.length-1生成一個偽隨機數賦值給index
            randStr += str2[index];// 將對應索引的數組與randStr的變量值相連接
        }
        return randStr;
    }

    /**
     * 阿裏短信的通用配置
     * @throws ClientException
     */
    public static IAcsClient aliSmsConfig() {
        //設置超時時間-可自行調整
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");
        //初始化ascClient需要的幾個參數
        final String product = "Dysmsapi";//短信API產品名稱(短信產品名固定,無需修改)
        final String domain = "dysmsapi.aliyuncs.com";//短信API產品域名(接口地址固定,無需修改)
        //替換成你的AK
        final String accessKeyId = ConstantUtils.ACCESS_KEY_ID;//你的accessKeyId,參考本文檔步驟2
        final String accessKeySecret = ConstantUtils.ACCESS_KEY_SECRET;//你的accessKeySecret,參考本文檔步驟2
        //初始化ascClient,暫時不支持多region(請勿修改)
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId,
                accessKeySecret);
        try {
            DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
        } catch (ClientException e) {
            e.printStackTrace();
        }
        IAcsClient acsClient = new DefaultAcsClient(profile);
        return acsClient;
    }

    /**
     *
     * @param templateCode      短信模板編號
     * @param telephone         手機號,可多個,以‘,‘隔開,最多1000
     * @param templateParam     變量內容
     * @return
     * @throws ServerException
     * @throws ClientException
     */
    public static String sendSms(String templateCode, String telephone, String templateParam){
        IAcsClient acsClient = aliSmsConfig();
         //組裝請求對象
         SendSmsRequest request = new SendSmsRequest();
         //使用post提交
         request.setMethod(MethodType.POST);
         //必填:待發送手機號。支持以逗號分隔的形式進行批量調用,批量上限為1000個手機號碼,批量調用相對於單條調用及時性稍有延遲,驗證碼類型的短信推薦使用單條調用的方式
         request.setPhoneNumbers(telephone);
         //必填:短信簽名-可在短信控制臺中找到
         request.setSignName(ConstantUtils.SIGN_NAME);
         //必填:短信模板-可在短信控制臺中找到
         request.setTemplateCode(templateCode);
         //可選:模板中的變量替換JSON串,如模板內容為"親愛的${name},您的驗證碼為${code}"時,此處的值為
         //友情提示:如果JSON中需要帶換行符,請參照標準的JSON協議對換行符的要求,比如短信內容中包含\r\n的情況在JSON中需要表示成\\r\\n,否則會導致JSON在服務端解析失敗
         if(!StringUtil.isEmpty(templateParam)){
             request.setTemplateParam(templateParam);
         }
         //可選-上行短信擴展碼(擴展碼字段控制在7位或以下,無特殊需求用戶請忽略此字段)
         //request.setSmsUpExtendCode("90997");
         //可選:outId為提供給業務方擴展字段,最終在短信回執消息中將此值帶回給調用者
//       request.setOutId("yourOutId");
        //請求失敗這裏會拋ClientException異常
        SendSmsResponse sendSmsResponse = null;
        try {
            sendSmsResponse = acsClient.getAcsResponse(request);
        } catch (ServerException e) {
            e.printStackTrace();
            return "fail";
        } catch (ClientException e) {
            e.printStackTrace();
            return "fail";
        }
        if(sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
            //請求成功
            logger.info("短息發送成功!手機號:" + telephone);
            return "success";
        } else {
            logger.error("短信發送失敗!手機號:" + telephone + "|返回錯誤碼:" + sendSmsResponse.getCode());
            return "fail";
        }
    }

    public static void main(String[] args) throws ServerException, ClientException {
        String code = getCaptcha();
        System.out.println("驗證碼為:" + code);
        String templateCode = ConstantUtils.CAPTCHA_TEL_CODE;
        String recNum = "18612349630";
//      String templateParam = "{\"code\":\"" + code +"\"}";
//      System.out.println("templateParam:" + templateParam);
//      sendSms(templateCode, recNum, templateParam);

        String templateParam = "{\"" + ConstantUtils.CODE_CAPTCHA_VAR_NAME + "\":\"" + code + "\"}";
//      String templateParam = "{\"" + ConstantUtils.NAME_FRANCHISEE_VAR_NAME + "\":\"" + name + "\"}";
        System.out.println("templateParam:" + templateParam);
        sendSms(templateCode, recNum, templateParam);
    }
}

阿裏大魚短信介入demo分享