package com.ruoyi.admin.utils;
|
|
|
import com.aliyuncs.CommonRequest;
|
import com.aliyuncs.CommonResponse;
|
import com.aliyuncs.DefaultAcsClient;
|
import com.aliyuncs.IAcsClient;
|
import com.aliyuncs.exceptions.ClientException;
|
import com.aliyuncs.profile.DefaultProfile;
|
import com.google.gson.Gson;
|
import org.apache.http.HttpResponse;
|
import org.springframework.stereotype.Component;
|
|
import java.util.HashMap;
|
import java.util.Map;
|
|
/**
|
* 阿里云短信工具类
|
*/
|
@Component
|
public class ALiSendSms {
|
|
|
|
|
public void send(String phone,String workerPhone) {
|
String host = "https://gyytz.market.alicloudapi.com";
|
String path = "/sms/smsSend";
|
String method = "POST";
|
String appcode = "0efeed6a5fe94240b143fec8910c5053";
|
Map<String, String> headers = new HashMap<String, String>();
|
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
|
headers.put("Authorization", "APPCODE " + appcode);
|
Map<String, String> querys = new HashMap<String, String>();
|
querys.put("mobile", phone);
|
querys.put("param", "**phone**:"+workerPhone);
|
|
//smsSignId(短信前缀)和templateId(短信模板),可登录国阳云控制台自助申请。参考文档:http://help.guoyangyun.com/Problem/Qm.html
|
|
querys.put("smsSignId", "d946ebc659714663955e73540ea47185");
|
querys.put("templateId", "f534b5fb27594fbf89c4f78288a5932d");
|
Map<String, String> bodys = new HashMap<String, String>();
|
|
|
try {
|
/**
|
* 重要提示如下:
|
* HttpUtils请从\r\n\t \t* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java\r\n\t \t* 下载
|
*
|
* 相应的依赖请参照
|
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
|
*/
|
HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
|
System.out.println(response.toString());
|
//获取response的body
|
//System.out.println(EntityUtils.toString(response.getEntity()));
|
} catch (Exception e) {
|
e.printStackTrace();
|
}
|
}
|
|
}
|