我是靠谱客的博主 落后白开水,最近开发中收集的这篇文章主要介绍阿里云短信接口,Java 对接开发代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.alibaba.fastjson.JSONObject;
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;
import com.tulian.cim6d.construction.config.PropertityConfig;

/**
 * @Auther: tarzan
 * @Date: 2018/5/29 10:49
 * @Description: 短信验证码测试
 */
@Component
public class SmsUtils {
	/** 产品名称:云通信短信API产品,开发者无需替换 */
	private static final String product = "Dysmsapi";
	/** 产品域名,开发者无需替换 */
	private static final String domain = "dysmsapi.aliyuncs.com";
	/** 短信模板 */
	private static final String templateCode = "SMS_190786463";
	/** 短信签名 */
	private static final String smsSign = "比目鱼";
	// 以下为测试代码,随机生成验证码
	private static int newcode;
	@Autowired
	private PropertityConfig propertityConfig;

	public static int getNewcode() {
		return newcode;
	}

	public static void setNewcode() {
		newcode = (int) (Math.random() * 9999) + 100; // 每次调用生成一次四位数的随机数
	}

	public SendSmsResponse sendSms(String telephone, JSONObject param) throws ClientException {

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

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

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

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

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

		// hint 此处可能会抛出异常,注意catch
		SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
		if (sendSmsResponse.getCode() != null && sendSmsResponse.getCode().equals("OK")) {
			System.out.println("短信发送成功!");
		} else {
			System.out.println("短信发送失败!");
		}
		return sendSmsResponse;
	}

	// public static void main(String[] args) throws Exception {
	 setNewcode();
	 String code = Integer.toString(getNewcode());
	 String telephone = "18637983099";
	 SendSmsResponse sendSms = sendSms(telephone, code);//填写你需要测试的手机号码
	 System.out.println("短信接口返回的数据----------------");
	 System.out.println("Code=" + sendSms.getCode());
	 System.out.println("Message=" + sendSms.getMessage());
	 System.out.println("RequestId=" + sendSms.getRequestId());
	 System.out.println("BizId=" + sendSms.getBizId());
	//
	// }
}

配置文件类


import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 配置文件
 *
 * @version 1.0
 * @since JDK1.8
 * @author tarzan 
 * @date 2019年04月24日 16:39:03
 */
@ConfigurationProperties(prefix = "sms")
@Component
@Data
@NoArgsConstructor
public class PropertityConfig {
	
	/**
	 *  阿里云key
	 */
	@Value("${sms.accessKeyId}")
	private String accessKeyId;
	
	/** 阿里云密钥 */
	@Value("${sms.accessKeySecret}")
	private String accessKeySecret;
	
}

最后

以上就是落后白开水为你收集整理的阿里云短信接口,Java 对接开发代码的全部内容,希望文章能够帮你解决阿里云短信接口,Java 对接开发代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部