阿里什么都做啊,今天发现了短信服务,测试了一下,可用,简单方便,不需要太多时间便搞定了,文章最后有源码下载。
1、首先你需要有阿里云账号---然后开通短信服务,记得在阿里云账号充2元,不然发送不成功
https://www.aliyun.com/product/sms?spm=5176.doc25420.416540.56.567Vu7
************************************************
**************************************************************
**************************价格**********************************
2、首先看下你需要准备哪些参数
/**********需要准备的参数**************/
public static String accessKey="";//需要修改
public static String accessSecret="";//需要修改
public static String code="SMS_41635111";//需要修改
public static String signName="测试99";//需要修改
3、开通短信服务成功后,需要配置短信签名和短信模板,配置完后,需要审核,审核过后就拿了code和signName两个参数
4、创建短信签名
注意
审核成功
5、创建短信模板
审核成功
这里面有一个不成功,原因是我想用短信通知来发验证码
sms01: ${name},哈哈,现在时间是${time}
sms02: ${name},我用短信通知发送验证码不行啊,验证码为${code},时间${time},祝生活愉快。
6、短信签名和短信模板审核通过后就可以开发了
7、主要代码
package com.kp.sms;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.exceptions.ServerException;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;
import com.aliyuncs.sms.model.v20160927.SingleSendSmsRequest;
import com.aliyuncs.sms.model.v20160927.SingleSendSmsResponse;
/**
* @author: py
* @version:2017年1月13日 下午2:40:28
* com.kp.sms.TestSms.java
* @Desc
*/
public class TestSms {
public static String regionId="cn-hangzhou";//机房信息,可以不用更改
/**********需要准备的参数**************/
public static String accessKey="";//需要修改
public static String accessSecret="";//需要修改
public static String code="SMS_41635111";//需要修改
public static String signName="测试99";//需要修改
/**********************************/
public static void main(String[] args) {
String phone="15589895656";
String time =getChinaDateByMM(System.currentTimeMillis());
//根据自己定义的短信模板,修改
String jsonStr="{\"name\":\"小明\",\"code\":\"12312\",\"time\":\""+time +"\"}";
test(phone, jsonStr,code,signName);
}
public static void test(String phone, String jsonStr, String code, String signName) {
try {
IClientProfile profile = DefaultProfile.getProfile(regionId, accessKey, accessSecret);
DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", "Sms", "sms.aliyuncs.com");
IAcsClient client = new DefaultAcsClient(profile);
SingleSendSmsRequest request = new SingleSendSmsRequest();
//管理控制台中配置的短信签名(状态必须是验证通过)
request.setSignName(signName);
//管理控制台中配置的审核通过的短信模板的模板CODE(状态必须是验证通过)
request.setTemplateCode(code);
// 短信模板中的变量;数字需要转换为字符串;个人用户每个变量长度必须小于15个字符。
// 例如:短信模板为:“接受短信验证码${no}”,此参数传递{“no”:”123456”},用户将接收到[短信签名]接受短信验证码123456
request.setParamString(jsonStr);
//目标手机号,多个手机号可以逗号分隔
request.setRecNum(phone);
// request.setVersion(version);
SingleSendSmsResponse httpResponse = client.getAcsResponse(request);
String requestId = httpResponse.getRequestId();
System.err.println("requestId:"+requestId);
} catch (ServerException e) {
e.printStackTrace();
}
catch (ClientException e) {
e.printStackTrace();
}
}
/**
* 使用毫秒转换为中文日期
* @param tmpDateInt
* @return
*/
public static String getChinaDateByMM(long time){
String ret_date = "";
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy年MM月dd日");
ret_date = formatter.format(time);
return ret_date;
}
}
返回值
8、成功
9、源码:
http://download.csdn.net/detail/u014520797/9738807
10、注意:有些账号运行该代码会报错,原因可能如下:
*************************
短信服务这个产品已经整合到消息服务MNS中了,需要使用MNS的sdk来发送短信。
JAVA SDK:https://help.aliyun.com/document_detail/51063.html
Python SDK:https://help.aliyun.com/document_detail/51372.html
C# SDK:https://help.aliyun.com/document_detail/52016.html
PHP SDK: https://help.aliyun.com/document_detail/51929.html
晚点我会写一篇新文章解决大家的疑惑
http://blog.csdn.net/u014520797/article/details/71171880