From 71a68f675e319967c3078f3f2b86ee971b47b50b Mon Sep 17 00:00:00 2001 From: zhibing.pu <393733352@qq.com> Date: 星期一, 02 九月 2024 13:34:26 +0800 Subject: [PATCH] 修改bug和翻译 --- UserIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/util/SMSUtil.java | 88 ++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 85 insertions(+), 3 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 34df1e4..541617e 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 @@ -1,6 +1,18 @@ 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; +import com.twilio.rest.api.v2010.account.Message; +import com.twilio.type.PhoneNumber; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + import javax.net.ssl.*; import java.io.*; import java.net.URL; @@ -12,6 +24,7 @@ import java.text.SimpleDateFormat; import java.util.*; +@Component public class SMSUtil { //无需修改,用于格式化鉴权头域,给"X-WSSE"参数赋值 @@ -228,11 +241,80 @@ } - public static void main(String[] args) { + /** + * 发送Twilio短信 + * @param toPhone + * @param msg + * @return + */ + public static boolean sendTwilioMessage(String toPhone, String msg){ + String ACCOUNT_SID = "AC1fd05e898bd59d17ba72db621afca537"; + String AUTH_TOKEN = "7cee1a6cb0e2936a9037be577b1ffe57"; + String formPhone = "+16672740015"; try { - SMSUtil.send_huawei_sms("b793ae3d41a049059197bfe92cf8bc83", "+233500666666", "[\"1234\"]"); - } catch (Exception e) { + Twilio.init(ACCOUNT_SID, AUTH_TOKEN); + Message message = Message.creator( + new PhoneNumber(toPhone), + new PhoneNumber(formPhone), + msg + ).create(); + System.out.println(message.getSid()); + Message.Status status = message.getStatus(); + switch (status.toString()){ + case "canceled": + return false; + case "undelivered": + return false; + case "failed": + return false; + } + return true; + }catch (Exception e){ e.printStackTrace(); + return false; } } + + + /** + * 短信 : 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/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"); + params.put("callback_url", "https://igo.i-go.group/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); + Integer status = jsonObject.getInteger("status"); + if(null != status && 1701 == status){ + return true; + }else{ + System.err.println("短信发送失败:" + jsonObject.toJSONString()); + return false; + } + + + } + + public static void main(String[] ages){ + //{"callback_url":"https://igo.i-go.group/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", "Your verification code is 2358,it is valid within 5 minutes, please do not reveal it to others."); + } } -- Gitblit v1.7.1