java接入阿里云短信sdk 代码
作者:网络转载 发布时间:[ 2017/3/3 10:18:43 ] 推荐标签:测试开发技术 Java
前言 需要引入sdk包
http://aliyundm.oss-cn-hangzhou.aliyuncs.com/example/aliyun-java-sdk-smsV1.zip 代码
两种发送方式:getAcsResponse和doAction接口,这里演示简单的getAcsResponse。
/**
*
* @param toPhone 要发送的手机号码
* @param code 验证码
* @return
*/
public String getAcsResponse(String toPhone, String code) {
SingleSendSmsResponse httpResponse = new SingleSendSmsResponse();
String result = "";
try {
IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou",accessKey, accessSecret);
DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", "Sms","sms.aliyuncs.com");
IAcsClient client = new DefaultAcsClient(profile);
SingleSendSmsRequest request = new SingleSendSmsRequest();
request.setSignName(sign);// 控制台创建的签名名称
request.setTemplateCode(templateCode);// 控制台创建的模板CODE
JSONObject jsonCode = new JSONObject();
jsonCode.accumulate("code", code);
request.setParamString(jsonCode.toString());
request.setRecNum(toPhone);
request.setAcceptFormat(FormatType.JSON); // 格式为json
httpResponse = client.getAcsResponse(request);
logger.info("send msgcode response: {} ", httpResponse.toString());
result = ConstUtils.ERROR_0;
} catch (ClientException e) {
e.printStackTrace();// //InvalidSignName.Malformed : The specified// sign name is wrongly formed.
logger.error("send msgcode error :{}", e.getMessage());
result = e.getErrCode();
}
return result;
}
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11