阿里云发送短信分为以下几个步骤
- 在阿里云开通短信服务 生成获取AccessKeyId 和 AccessKeySecret
- 在控制台创建、申请短信模版,申请通过即可使用。记下<模版CODE>
- 创建短信工具类方便调用发送短信
@Slf4j
public class SmsUtils {
// 发送短信
public static String sendSmsAliyun(String mobile, String code) {
DefaultProfile profile = DefaultProfile.getProfile("default", "这里填AccessKeyId", "这里填AccessKeySecret");
IAcsClient client = new DefaultAcsClient(profile);
CommonRequest request = new CommonRequest();
request.setMethod(MethodType.POST);
request.setDomain("dysmsapi.aliyuncs.com");
request.setVersion