spring boot 整合 云之讯 demo

Posted 1-admin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 整合 云之讯 demo相关的知识,希望对你有一定的参考价值。

---恢复内容开始---

package com.zhourong.controller;

import org.apache.commons.lang3.RandomStringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

import com.zhourong.dto.SmsDto;
import com.zhourong.utils.Result;
import com.zhourong.vo.SmsVo;

@RestController
@RequestMapping("/sms/")
public class SmsController {
    private final String appid = "6d5ea3e7964341058f0cd1b31799eb27";
    private final String sid = "b3cf37114ad3e0f61d66d5317306af70";
    private final String token = "1a1e13a677e25df8ceadb8dd100d2fd3";
    private final String templateid = "413092";
    
    @Autowired
    private RestTemplate restTemplate;
    
    @RequestMapping("/send")
    @ResponseBody
    public Result<SmsVo> send() {
        String url = "https://open.ucpaas.com/ol/sms/sendsms";
        SmsDto sms = new SmsDto();    
        String code = RandomStringUtils.randomNumeric(4);  
        sms.setAppid(appid);
        sms.setMobile("18821962348");
        sms.setSid(sid);
        sms.setTemplateid(templateid);
        sms.setToken(token);
        sms.setParam(code);
        ResponseEntity<SmsVo> smsVo = restTemplate.postForEntity(url,sms, SmsVo.class);
        return new Result(200,"发送成功",smsVo);
        
    }
}

项目结构:

 技术分享图片

 

直接用。

git:https://gitee.com/xxoo0_297/SMS.git

 

---恢复内容结束---



以上是关于spring boot 整合 云之讯 demo的主要内容,如果未能解决你的问题,请参考以下文章

云之讯 亿美 短信的三方接口

android 验证码之短信验证(云之讯短信平台)

android 验证码之短信验证(云之讯短信平台)

Dubbo Spring Boot 最佳实践整合 Demo 征集

spring boot2整合shiro安全框架实现前后端分离的JWT token登录验证

spring boot整合quartz定时任务案例