Java项目集成Luosimao短信接口发送短信

public class SendMessage {
private static final String LUOSIMAO_USER = “api”;
private static final String urlSendSingle = “http://sms-api.luosimao.com/v1/send.json”; //发送单条短信接口
private static final String urlSendBatch = “http://sms-api.luosimao.com/v1/send_batch.json”; //发送批量短信接口
private static final String urlSerchString = “http://sms-api.luosimao.com/v1/status.json”; //账户查询接口
private static final String MESSAGE_MODEL_STRING = “【短信签名】”; //短信签名 应与luosimao账户中设置的签名一致,如果不一致则不可用
public static Map responseMap =new HashMap();
private static final String keyString = “输入你的验证密码”; //验证密码

static{
if(responseMap.isEmpty()){
responseMap.put(“0”,“发送成功”);
responseMap.put("-10",“验证信息失败”);
responseMap.put("-11",“用户接口被禁用”);
responseMap.put("-20",“短信余额不足”);
responseMap.put("-30 “,“短信内容为空”);
responseMap.put(”-31",“短信内容存在敏感词”);
responseMap.put("-32",“短信内容缺少签名信息”);
responseMap.put("-33",“短信过长,超过300字(含签名)”);
responseMap.put("-34",“签名不可用”);
responseMap.put("-40",“错误的手机号”);
responseMap.put("-41",“号码在黑名单中”);
responseMap.put("-42",“验证码类短信发送频率过快”);
responseMap.put("-43",“号码数量太多”);
responseMap.put("-50",“请求发送IP不在白名单内”);
responseMap.put("-60",“定时时间为过去”);
}
}

/**
* 执行方法入口—发送短信
* @return 返回发送状态信息
*/
public static String MessageExecuteMethod(String mobile,String message){
String resultString = null;

    String messageString = message+MESSAGE_MODEL_STRING; //发送短信内容
    MultivaluedMapImpl formData = new MultivaluedMapImpl();
    formData.add("message", messageString); //必须要在luosimao官网上添加短信模板,并且这里的信息要符合短信模板的要求,这样发送的时候就不会经过他们进行审核,发送速度快
    if(!StringUtils.isEmpty(mobile)){ //手机号码不为空
       if(mobile.split(",").length<2){ //单条信息
          formData.add("mobile", mobile);       
          resultString = SendMessageMethod(formData,urlSendSingle);
       }else{
          formData.add("mobile_list", mobile);
          resultString = SendMessageMethod(formData,urlSendBatch);   
       }
    }else{
       formData.add("moblie", "");
       resultString = SendMessageMethod(formData,urlSendSingle);
    }
    return resultString;
}
/**
 * 执行方法入口----账户查询
 * @return map 如果交互成功会有两个key  "code"表示返回状态代码,"msg"表示返回信息
*      
 */
public static Map UserInfoSearchMethod(){
   Map resultMap = SearchUserDetails(urlSerchString);
    return resultMap;
}
/**
 * 发送短信逻辑
 */
public static String SendMessageMethod(MultivaluedMapImpl formData,String urlString){
   String responseString = null;
   Client client = Client.create();
    client.addFilter(new HTTPBasicAuthFilter(LUOSIMAO_USER,"key-"+keyString));
   WebResource webResource = client.resource(urlString);
    ClientResponse response =  webResource.type( MediaType.APPLICATION_FORM_URLENCODED ).post(ClientResponse.class, formData);
    String textEntity = response.getEntity(String.class);
    try {
        JSONObject jsonObj = new JSONObject( textEntity );
        String error_code = jsonObj.getInt("error")+"";
        responseString= (String) responseMap.get(error_code);     
    } catch (JSONException ex) {
        Logger.getLogger(SendMessage.class.getName()).log(Level.SEVERE, null, ex);
    }
    return responseString;
}
/**
 * 账户信息(查询余额)
 */
private static Map SearchUserDetails(String urlString){
   Map resultMap = new HashMap();
    Client client = Client.create();
    client.addFilter(new HTTPBasicAuthFilter(LUOSIMAO_USER,"key-"+keyString));
    WebResource webResource = client.resource(urlString);
    ClientResponse response =  webResource.get( ClientResponse.class );
    String textEntity = response.getEntity(String.class);
    try {
        JSONObject jsonObj = new JSONObject( textEntity );
        String error_code = jsonObj.getInt("error")+"";
        
        String deposit = jsonObj.getInt("deposit")+"";
        resultMap.put("code", responseMap.get(error_code));
        resultMap.put("counts", deposit);
    } catch (JSONException ex) {
        Logger.getLogger(SendMessage.class.getName()).log(Level.SEVERE, null, ex);
    }
    return resultMap;
}

public static void main(String[] args) {
Map map = new HashMap();
map.put(“mobile”, “手机号”);
map.put(“message”, “斯宾特体育提醒您,距离您的参赛时间还剩2天!【斯宾特体育】”); //符合该注册账号中的短信模板会提高发送速度
String telResponse = SendMessage.MessageExecuteMethod("","");
System.out.println(telResponse);
Map userResponse = SendMessage.UserInfoSearchMethod();
System.out.println(“发送状态:”+userResponse.get(“code”));
System.out.println(“账户余额:”+userResponse.get(“counts”));
}

}

luosimao网站:https://luosimao.com/docs/api/

猜你喜欢

转载自blog.csdn.net/qq_27319683/article/details/84342789
今日推荐