From 155df5096da87c047ea5af3ce7f8b2284c02dd2d Mon Sep 17 00:00:00 2001
From: zhibing.pu <393733352@qq.com>
Date: 星期六, 10 八月 2024 14:00:22 +0800
Subject: [PATCH] 修改2.0 bug
---
UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java | 18 ++++++++++++------
1 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java
index 656d303..0451d04 100644
--- a/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java
+++ b/UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java
@@ -277,27 +277,30 @@
/**
- * 短信 : https://www.nalosolutions.com/
+ * 短信 : https://sms.mymailcentre.com/smsportal/cellulant
* @param toPhone
* @param msg
* @return
*/
public boolean sendCellulantMessage(String toPhone, String msg){
- String url = "https://sms.nalosolutions.com/smsbackend/clientapi/Cell_resl/send-message/";
+ 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", "ru#0flkf3993qh!!rg!@y4)nhwi08c#tg_vasek!ja)kvfnfjyoljoz(@nai(jkf");
+ 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");
- System.err.println(params.toJSONString());
+ params.put("callback_url", "http://182.160.16.251:80/user/base/sendCellulantMessageCallback");
post.body(params.toJSONString());
+ System.err.println("短信请求:\n请求地址:" + url + "\n请求参数:" + params.toJSONString());
HttpResponse execute = post.execute();
String body = execute.body();
execute.close();
JSONObject jsonObject = JSON.parseObject(body);
- System.err.println(body);
+ System.err.println("短信响应:" + body);
Integer status = jsonObject.getInteger("status");
if(null != status && 1701 == status){
return true;
@@ -305,10 +308,13 @@
System.err.println("短信发送失败:" + jsonObject.toJSONString());
return false;
}
+
+
}
public static void main(String[] ages){
+ //{"callback_url":"http://182.160.16.251:80/user/base/sendCellulantMessageCallback","msisdn":"233244915521","message":"Your verification code is 2358,it is valid within 5 minutes, please do not reveal it to others.","key":"ru#0flkf3993qh!!rg!@y4)nhwi08c#tg_vasek!ja)kvfnfjyoljoz(@nai(jkf","sender_id":"I-GO"}
SMSUtil smsUtil = new SMSUtil();
- smsUtil.sendCellulantMessage("233244915521", "Votre code de validation est 123456 et il est valide pendant 5 minutes. Veuillez ne pas le révéler à d’autres personnes.");
+ smsUtil.sendCellulantMessage("233244915521", "Your verification code is 2358,it is valid within 5 minutes, please do not reveal it to others.");
}
}
--
Gitblit v1.7.1