|
@@ -7,6 +7,9 @@ import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
|
|
import com.aliyuncs.exceptions.ClientException;
|
|
import com.aliyuncs.exceptions.ClientException;
|
|
import com.aliyuncs.profile.DefaultProfile;
|
|
import com.aliyuncs.profile.DefaultProfile;
|
|
import com.aliyuncs.profile.IClientProfile;
|
|
import com.aliyuncs.profile.IClientProfile;
|
|
|
|
+import com.ruoyi.common.config.SMSProperties;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Created on 20/5/19.
|
|
* Created on 20/5/19.
|
|
@@ -16,28 +19,20 @@ import com.aliyuncs.profile.IClientProfile;
|
|
* 备注:Demo工程编码采用UTF-8
|
|
* 备注:Demo工程编码采用UTF-8
|
|
* 国际短信发送请勿参照此DEMO
|
|
* 国际短信发送请勿参照此DEMO
|
|
*/
|
|
*/
|
|
|
|
+@Component
|
|
public class SendMessage {
|
|
public class SendMessage {
|
|
- //产品名称:云通信短信API产品,开发者无需替换
|
|
|
|
- static final String product = "Dysmsapi";
|
|
|
|
- //产品域名,开发者无需替换
|
|
|
|
- static final String domain = "dysmsapi.aliyuncs.com";
|
|
|
|
|
|
|
|
- // TODO 此处需要替换成开发者自己的AK(在阿里云访问控制台寻找)
|
|
|
|
-// static final String accessKeyId = "LTAI5tKvxXUQ61e5PSm3mzQ1";
|
|
|
|
- static final String accessKeyId = "LTAI4GEnYjNkDo3PiCLwmcsS";
|
|
|
|
-
|
|
|
|
-// static final String accessKeySecret = "WEzhPLHWqEINBbiLn168g2nP1H8Cje";
|
|
|
|
- static final String accessKeySecret = "PVJvmoubjj3BTRViAxPpcFZvEyAeOj";
|
|
|
|
-
|
|
|
|
- public static SendSmsResponse sendSms(String phone, String code) throws ClientException {
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private SMSProperties smsProperties;
|
|
|
|
|
|
|
|
+ public SendSmsResponse sendSms(String phone, String code) throws ClientException {
|
|
//可自助调整超时时间
|
|
//可自助调整超时时间
|
|
System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
|
|
System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
|
|
System.setProperty("sun.net.client.defaultReadTimeout", "10000");
|
|
System.setProperty("sun.net.client.defaultReadTimeout", "10000");
|
|
|
|
|
|
//初始化acsClient,暂不支持region化
|
|
//初始化acsClient,暂不支持region化
|
|
- IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
|
|
|
|
- DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
|
|
|
|
|
|
+ IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", smsProperties.getAccessKeyId(), smsProperties.getAccessKeySecret());
|
|
|
|
+ DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", "Dysmsapi", "dysmsapi.aliyuncs.com");
|
|
IAcsClient acsClient = new DefaultAcsClient(profile);
|
|
IAcsClient acsClient = new DefaultAcsClient(profile);
|
|
|
|
|
|
//组装请求对象-具体描述见控制台-文档部分内容
|
|
//组装请求对象-具体描述见控制台-文档部分内容
|
|
@@ -45,10 +40,9 @@ public class SendMessage {
|
|
//必填:待发送手机号
|
|
//必填:待发送手机号
|
|
request.setPhoneNumbers(phone);
|
|
request.setPhoneNumbers(phone);
|
|
//必填:短信签名-可在短信控制台中找到
|
|
//必填:短信签名-可在短信控制台中找到
|
|
- request.setSignName("菊辉电子");
|
|
|
|
|
|
+ request.setSignName(smsProperties.getSignName());
|
|
//必填:短信模板-可在短信控制台中找到
|
|
//必填:短信模板-可在短信控制台中找到
|
|
-// request.setTemplateCode("SMS_154950909");
|
|
|
|
- request.setTemplateCode("SMS_283430418");
|
|
|
|
|
|
+ request.setTemplateCode(smsProperties.getTemplateCode());
|
|
//可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
|
|
//可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
|
|
request.setTemplateParam("{\"code\":\"" + code + "\"}");
|
|
request.setTemplateParam("{\"code\":\"" + code + "\"}");
|
|
|
|
|
|
@@ -64,16 +58,4 @@ public class SendMessage {
|
|
return sendSmsResponse;
|
|
return sendSmsResponse;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
- public static void main(String[] args) throws ClientException, InterruptedException {
|
|
|
|
-
|
|
|
|
- //发短信
|
|
|
|
- SendSmsResponse response = sendSms("123456789", "6666");
|
|
|
|
- System.out.println("短信接口返回的数据----------------");
|
|
|
|
- System.out.println("Code=" + response.getCode());
|
|
|
|
- System.out.println("Message=" + response.getMessage());
|
|
|
|
- System.out.println("RequestId=" + response.getRequestId());
|
|
|
|
- System.out.println("BizId=" + response.getBizId());
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
}
|
|
}
|