| | |
| | | @Slf4j |
| | | public class AliSmsService { |
| | | |
| | | private final static String ACCESS_KEY_ID = "LTAI5tMkg7wwV74a8H6Bm3Ej"; |
| | | private final static String ACCESS_KEY_SECRET = "FcHKST36sfwfo706L6bvrweGFIbp3n"; |
| | | private final static String SING_NAME = "橙桔天下科技"; |
| | | private final static String ACCESS_KEY_ID = "LTAI5t835zTU4aaYpGHJCccJ"; |
| | | private final static String ACCESS_KEY_SECRET = "98sAF2NchWVuIzu62zcLq0Ns7LIQTp"; |
| | | private final static String SING_NAME = "南京三只鹤"; |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | Map<String,Object> tempParam = new java.util.HashMap<>(); |
| | | tempParam.put("order","葡萄采摘工"); |
| | | tempParam.put("time1","07-23"); |
| | | tempParam.put("time2","07-24"); |
| | | AliSmsService.sendSms("18055151023","SMS_491055243", JSONObject.toJSONString(tempParam)); |
| | | tempParam.put("code","1234"); |
| | | AliSmsService.sendSms("15345690849","SMS_333770877", JSONObject.toJSONString(tempParam)); |
| | | } |
| | | |
| | | |
| | |
| | | * @param templateParam 模板变量json字符串 |
| | | * @return 处理结果 |
| | | */ |
| | | public static Boolean sendSms(String phone, String templateCode, String templateParam) { |
| | | public static String sendSms(String phone, String templateCode, String templateParam) { |
| | | try { |
| | | //设置超时时间-可自行调整 |
| | | System.setProperty("sun.net.client.defaultConnectTimeout", "10000"); |
| | | System.setProperty("sun.net.client.defaultReadTimeout", "10000"); |
| | | //初始化ascClient需要的几个参数 |
| | | //短信API产品名称(短信产品名固定,无需修改) |
| | | final String product = "Dysmsapi"; |
| | | //短信API产品域名(接口地址固定,无需修改) |
| | | final String domain = "dysmsapi.aliyuncs.com"; |
| | | //初始化ascClient,暂时不支持多region(请勿修改) |
| | | IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", ACCESS_KEY_ID, ACCESS_KEY_SECRET); |
| | | DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain); |
| | | IAcsClient acsClient = new DefaultAcsClient(profile); |
| | | //组装请求对象 |
| | | SendSmsRequest request = new SendSmsRequest(); |
| | | //使用post提交 |
| | | request.setMethod(MethodType.POST); |
| | | //必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式 |
| | | request.setPhoneNumbers(phone); |
| | | //必填:短信签名-可在短信控制台中找到 |
| | | request.setSignName(SING_NAME); |
| | | //必填:短信模板-可在短信控制台中找到 |
| | | request.setTemplateCode(templateCode); |
| | | //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为 |
| | | //友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\n,否则会导致JSON在服务端解析失败 |
| | | request.setTemplateParam(templateParam); |
| | | //可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段) |
| | | //dto.setSmsUpExtendCode("90997"); |
| | | //可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者 |
| | | //dto.setOutId("yourOutId"); |
| | | //请求失败这里会抛ClientException异常 |
| | | SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request); |
| | | if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) { |
| | | log.info("短信发送内容:"+phone + "-" + templateCode + "-" + templateParam + " >>> " + JSON.toJSONString(sendSmsResponse)); |
| | | return true; |
| | | log.info("短信发送成功:phone={}, template={}", phone, templateCode); |
| | | return null; |
| | | } else { |
| | | log.error("短信发送内容:"+phone + "-" + templateCode + "-" + templateParam + " >>> " + JSON.toJSONString(sendSmsResponse)); |
| | | String error = sendSmsResponse.getCode() + ":" + sendSmsResponse.getMessage(); |
| | | log.error("短信发送失败:phone={}, template={}, error={}", phone, templateCode, error); |
| | | return error; |
| | | } |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | // logger.error(e); |
| | | log.error("短信发送异常:phone={}, template={}, error={}", phone, templateCode, e.getMessage()); |
| | | return e.getMessage(); |
| | | } |
| | | return false; |
| | | } |
| | | } |