关于云服务:阿里云短信接口方法使用

31次阅读

共计 2660 个字符,预计需要花费 7 分钟才能阅读完成。

一,alibaba 短信接口调用

1)调用阿里的短信接口是很不便的,前提是你要开明好阿里的短信服务;

二,开明大体流程

1)登录阿里控制台 —–> 开明短信服务 ——> 交钱 ——–> 获取 AK——–> 配置签名(配置音讯签名,个别是公司名)

——–> 配置模板(配置音讯内容,例如:你的验证码是 ${code}, 请妥善保存 …..)——-> 开发

三,下载 demo, 引入依赖 jar 包

   <dependency>        <groupId>aliyun.java.sdk</groupId>        <artifactId>core</artifactId>        <version>3.3.1</version>        <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/aliyun-java-sdk-core-3.3.1.jar</systemPath>        <scope>compile</scope>    </dependency>    <dependency>        <groupId>aliyun.java.sdk</groupId>        <artifactId>dysmsapi</artifactId>         <version>1.0.0</version>        <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/aliyun-java-sdk-dysmsapi-1.0.0.jar</systemPath>        <scope>compile</scope>     </dependency>

四,调用接口

@Controllerpublic class ShortMessageController {// 产品名称: 云通信短信 API 产品, 开发者无需替换    static final String product = "Dysmsapi";    // 产品域名, 开发者无需替换    static final String domain = "dysmsapi.aliyuncs.com";     // TODO 此处须要替换成开发者本人的 AK(在 [阿里云](https://l.gushuji.site/aliyun) 拜访控制台寻找)    static final String accessKeyId = "**********";    static final String accessKeySecret = "**************";        @Autowired    private VerificationCodeMapper verificationCodeMapper;        @RequestMapping("getSsm")    @ResponseBody    public String getSsm(String number) {// 可自助调整超时工夫        System.setProperty("sun.net.client.defaultConnectTimeout", "10000");        System.setProperty("sun.net.client.defaultReadTimeout", "10000");         // 初始化 acsClient, 暂不反对 region 化        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);        try {DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);        } catch (ClientException e1) {e1.printStackTrace();        }        IAcsClient acsClient = new DefaultAcsClient(profile);         // 随机生成六位验证码          int code = (int)((Math.random()*9+1)*100000);                    // 删除该号码上次的验证码记录          verificationCodeMapper.deleteVerificationCodeMapper(number);        // 保留到数据库          VerificationCode verificationCode = new VerificationCode();          verificationCode.setCode(code+"");          verificationCode.setNumber(number);        int i =verificationCodeMapper.addVerificationCode(verificationCode);                // 组装申请对象 - 具体形容见控制台 - 文档局部内容        SendSmsRequest request = new SendSmsRequest();        // 必填: 待发送手机号        request.setPhoneNumbers(number);        // 必填: 短信签名 - 可在短信控制台中找到,你在签名治理里的内容        request.setSignName(" 星晨 ");        // 必填: 短信模板 - 可在短信控制台中找到,你模板治理里的模板编号        request.setTemplateCode("SMS_115760262");        // 可选: 模板中的变量替换 JSON 串, 如模板内容为" 敬爱的 ${name}, 您的验证码为 ${code}"时, 此处的值为        request.setTemplateParam("{\"code\":\""+code+"\"}");         // 选填 - 上行短信扩大码(无非凡需要用户请疏忽此字段)        //request.setSmsUpExtendCode("90997");         // 可选:outId 为提供给业务方扩大字段, 最终在短信回执音讯中将此值带回给调用者        //request.setOutId("yourOutId");         //hint 此处可能会抛出异样,留神 catch        SendSmsResponse sendSmsResponse = null;        try {sendSmsResponse = acsClient.getAcsResponse(request);        } catch (ServerException e) {e.printStackTrace();        } catch (ClientException e) {e.printStackTrace();        }        // 获取发送状态        String cod = sendSmsResponse.getCode();        return cod;}}

正文完
 0