腾讯云短信
短信 Java SDK-SDK 文档-文档中心-腾讯云 (tencent.com)
错误码-短信-文档中心-腾讯云 (tencent.com)
依赖的引入
<dependency>
<groupId>com.tencentcloudapi</groupId>
<artifactId>tencentcloud-sdk-java</artifactId>
<version>3.1.791</version>
</dependency>
package com.example.portablefortheelderlybackground.config.Tencent.SMS;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;
@Component
public class ApiId {
public static final String secretId = "AKIDDJC2f4GF1aHl9KI2Zu65rTwCG8oNlwsE";
public static final String secretKey = "CBwV2PahcJqBKGzTWP6ZptlV4Ys1xjKi";
public static final String sdkAppId = "1400835995";
public static final String signName = "西红柿要用热水烫个人网";
public static final String templateId = "1853165";
public static String[] generateTemplateParamSet(String code) {
return new String[]{code, "5"};
}
public static String[] generatePhoneNumSet(String... phone) {
String[] res = new String[phone.length];
int index = 0;
for (String s : phone) {
if (StringUtils.hasLength(s)) {
res[index++] = s;
}
}
return res;
}
}