发表于: 2020-08-26 23:55:17
1 1464
今天完成的事:
使用阿里云短信服务发送验证码。
public class AliyunSmsUtils {
private static final Logger logger = LoggerFactory.getLogger(AliyunSmsUtils.class);
//初始化ascClient需要的几个参数
private static final String product = "Dysmsapi";//短信API产品名称(短信产品名固定,无需修改)
private static final String domain = "dysmsapi.aliyuncs.com";//短信API产品域名(接口地址固定,无需修改)
//替换成你的AK
//你的accessKeyId,参考本文档步骤2
private static final String accessKeyId = "XXXXXX";
//你的accessKeySecret,参考本文档步骤2
private static final String accessKeySecret = "XXXXXXX";
public static SendSmsResponse sendSMS(String telephone, String code) {
//设置超时时间-可自行调整
System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
System.setProperty("sun.net.client.defaultReadTimeout", "10000");
//初始化ascClient,暂时不支持多region(请勿修改)
IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
DefaultProfile.addEndpoint("cn-hangzhou", product, domain);
IAcsClient acsClient = new DefaultAcsClient(profile);
//组装请求对象
SendSmsRequest request = new SendSmsRequest();
//使用post提交
request.setSysMethod(MethodType.POST);
//必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式;发送国际/港澳台消息时,接收号码格式为国际区号+号码,如“85200000000”
request.setPhoneNumbers(telephone);
//必填:短信签名-可在短信控制台中找到
request.setSignName("XXXX");
//必填:短信模板-可在短信控制台中找到,发送国际/港澳台消息时,请使用国际/港澳台短信模版
request.setTemplateCode("XXXX");
//可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
//友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
//参考:request.setTemplateParam("{\"变量1\":\"值1\",\"变量2\":\"值2\",\"变量3\":\"值3\"}")
request.setTemplateParam("{\"code\":\"" + code + "\"}");
//可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段)
//request.setSmsUpExtendCode("90997");
//可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
request.setOutId("yourOutId");
//请求失败这里会抛ClientException异常
SendSmsResponse sendSmsResponse = null;
try {
sendSmsResponse = acsClient.getAcsResponse(request);
} catch (ClientException e) {
e.printStackTrace();
}
if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
System.out.println("发送成功");
} else {
System.out.println("发送失败");
}
return sendSmsResponse;
}
//以下为测试代码,随机生成验证码
private static int newcode;
public static int getNewcode() {
return newcode;
}
public static void setNewcode() {
//每次调用生成一位四位数的随机数
newcode = (int) (Math.random() * 9999) + 100;
}
public static void main(String[] args){
setNewcode();
String code = Integer.toString(getNewcode());
System.out.println("发送的验证码为:" + code);
//发短信,填写手机号码
SendSmsResponse response = sendSMS("XXXX", code);
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());
}
}
明天的计划:
使用阿里云邮箱服务和图片存储服务。
遇到的问题:
1.用的阿里maven仓库咯,自己家的依赖都没有。。
下载jar包导入到本地仓库
mvn install:install-file -Dfile=jar包的位置(参数一) -DgroupId=groupId(参数二) -DartifactId=artifactId(参数三) -Dversion=version(参数四) -Dpackaging=jar
2.点击运行报这个错。
这个一看就是缺少这个包对吧。
然后我下载了jar包
放进本地仓库,然后引入依赖。没有爆红。
再次运行,还是报上面那个错。
解决方法
吸取教训:别用最新版,别用最新版,别用最新版
上面的错误是用了4.5.7版本造成的!!
它把这个方法直接设为过时方法,然后我用了它的最新的提交方法。
然后GG。
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<version>4.5.1</version>
</dependency>
ok~,溜了。
收获:
学会根据第三方文档使用API。
别用最新版的第三方SDK!!!
评论