From 6a90f2d1feaf583c211d5f9fe95dff7f7c748ed3 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期五, 06 九月 2024 17:42:20 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/IgoTravel into 2.0 --- DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java | 29 +++++++++++++++++++++-------- 1 files changed, 21 insertions(+), 8 deletions(-) diff --git a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java index d827a69..da77794 100644 --- a/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java +++ b/DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java @@ -1,6 +1,10 @@ package com.stylefeng.guns.modular.system.util; +import cn.hutool.http.ContentType; +import cn.hutool.http.HttpRequest; +import cn.hutool.http.HttpResponse; +import cn.hutool.http.HttpUtil; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.twilio.Twilio; @@ -274,23 +278,32 @@ - @Autowired - private HttpClientUtil httpClientUtil; public boolean sendCellulantMessage(String toPhone, String msg){ - String url = "https://sms.nalosolutions.com/smsbackend/Nal_resl/send-message/"; - Map<String, Object> params = new HashMap<>(); - params.put("key", "ru#0flkf3993qh!!rg!@y4)nhwi08c#tg_vasek!ja)kvfnfjyoljoz(@nai(jkf"); + String url = "https://sms.nalosolutions.com/smsbackend/Cell_resl/send-message/"; + HttpRequest post = HttpUtil.createPost(url); + post.contentType(ContentType.JSON.toString()); + JSONObject params = new JSONObject(); + params.put("key", "c_x7x5!v_1mhg(l34p05g2b@teheq)ex9mk1jj(u@nlfx_w5(rdx)tb_ttx22b3o"); + params.put("username", "I-GO"); + params.put("password", "abcd1234"); params.put("msisdn", toPhone); params.put("message", msg); params.put("sender_id", "I-GO"); - String s = httpClientUtil.pushHttpRequset("POST", url, params, null, "json"); - JSONObject jsonObject = JSON.parseObject(s); + params.put("callback_url", "https://igo.i-go.group/driver/base/sendCellulantMessageCallback"); + post.body(params.toJSONString()); + System.err.println("短信请求:\n请求地址:" + url + "\n请求参数:" + params.toJSONString()); + HttpResponse execute = post.execute(); + String body = execute.body(); + execute.close(); + System.err.println("短信响应:" + body); + JSONObject jsonObject = JSON.parseObject(body); Integer status = jsonObject.getInteger("status"); - if(1701 == status){ + if(null != status && 1701 == status){ return true; }else{ + System.err.println("短信发送失败:" + jsonObject.toJSONString()); return false; } } -- Gitblit v1.7.1