跳至主要內容

🛸天翼云短信

bleachtred大约 2 分钟

厂商信息

产品计费open in new window

基础配置

sms:
  ctyun:
    #天翼云的accessKey
    accessKeyId: 您的accessKey
    #天翼云的accessKeySecret
    accessKeySecret: 您的accessKeySecret
    #短信签名
    signature: 测试签名
    #模板ID 用于发送固定模板短信使用
    templateId: SMS_215125134
    #模板变量 上述模板的变量
    templateName: code
    #请求地址默认为 https://sms-global.ctapi.ctyun.cn/sms/api/v1 如无特殊改变可以不用设置
    requestUrl: https://sms-global.ctapi.ctyun.cn/sms/api/v1
    #接口方法默认为 SendSms 如无特殊改变可以不用设置
    action: SendSms

数据库风格配置

{
  "accessKeyId": "您的accessKey",
  "accessKeySecret": "您的accessKeySecret",
  "signature": "测试签名",
  "templateId":"SMS_215125134",
  "templateName": "code",
  "requestUrl": "https://sms-global.ctapi.ctyun.cn/sms/api/v1",
  "action": "SendSms"
}

手动写入配置文件风格

@Configuration
public class CtyunConfiguration{

    @Bean
    public void setConfiguration(){
        CtyunConfig ctyunConfig = SupplierFactory.getCtyunConfig();
        ctyunConfig.setAccessKeyId("您的accessKey");
        ctyunConfig.setAccessKeySecret("您的accessKeySecret");
        ctyunConfig.setSignature("测试签名");
        ctyunConfig.setTemplateId("SM123581321");
        ctyunConfig.setTemplateName("code");
        ctyunConfig.setAction("SendSms");

    }
}

其他方式

如果你想在某个环节动态的改变配置中的值,可以随时通过SupplierFactory.getCtyunConfig()获取天翼云的单例配置对象,并且修改它的值,但是要注意的是,
如果你修改了天翼云配置的值在发送短信前必须至少调用一次SmsFactory.refresh(SupplierType.CTYUN);方法进行配置刷新。