阿里云短信接口调用

package sadsdsf;


import java.util.ResourceBundle;


import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;


public class AliyunSmsUtils {
private static String accessKeyId = "密钥id";
    private static String accessKeySecret = "安全密钥";
    private static String signName = "短信签名";
    private static String templateCodeId = "模板id";
    private static String sms_params = "验证码";
    
    
    static {
  try {
  ResourceBundle bundle = ResourceBundle.getBundle("aliyun");
  if (bundle != null) {
  if (bundle.containsKey("accessKeyId")) {
  accessKeyId = bundle.getString("accessKeyId").trim();
  }
  if (bundle.containsKey("accessKeySecret")) {
  accessKeySecret = bundle.getString("accessKeySecret").trim();
  }
  if (bundle.containsKey("signName")) {
  signName = bundle.getString("signName").trim();
  }
  if (bundle.containsKey("templateCodeId")) {
  templateCodeId = bundle.getString("templateCodeId").trim();
  }
  if (bundle.containsKey("sms_params")) {
  sms_params = bundle.getString("sms_params").trim();
  }
  }
  } catch (Exception e) {
  e.printStackTrace();
  }
  }
    
    //产品名称:云通信短信API产品,开发者无需替换
    private static final String product = "Dysmsapi";
    //产品域名,开发者无需替换
    private static final String domain = "dysmsapi.aliyuncs.com";
    
  


    public static String sendSMS(String phoneNumber) {
try {
SendSmsResponse response = sendSms(templateCodeId, phoneNumber, sms_params);
if(response.getCode().equals("OK")){
System.out.println("短信发送成功");
}
com.google.gson.Gson gson = new com.google.gson.GsonBuilder().create();
return gson.toJson(response);
} catch (ClientException e) {
e.printStackTrace();
}
return null;
}
    
    
    public static SendSmsResponse sendSms(String templateCodeId, String phoneNumbers, String param) throws ClientException {


        //可自助调整超时时间
        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
        System.setProperty("sun.net.client.defaultReadTimeout", "10000");


        //初始化acsClient,暂不支持region化
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
        DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
        IAcsClient acsClient = new DefaultAcsClient(profile);


        //组装请求对象-具体描述见控制台-文档部分内容
        SendSmsRequest request = new SendSmsRequest();
        //必填:待发送手机号
        request.setPhoneNumbers(phoneNumbers);
        //必填:短信签名-可在短信控制台中找到
        request.setSignName(signName);
        //必填:短信模板-可在短信控制台中找到
        request.setTemplateCode(templateCodeId);
        //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
        request.setTemplateParam(param);


        //选填-上行短信扩展码(无特殊需求用户请忽略此字段)
        //request.setSmsUpExtendCode("90997");


        //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
        //request.setOutId("yourOutId");


        //hint 此处可能会抛出异常,注意catch
        SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);


        return sendSmsResponse;

    }


需先引入阿里云的两个Jar包


使用引入gson包读取配置文件

配置文件配置信息:

    accessKeyId=官网申请
    accessKeySecret=成对出现
    signName=短息签名,一般为企业名称  需申请
    templateCodeId=模板ID 需申请

    sms_params=验证码



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值