| | |
| | | params.put("msisdn", toPhone); |
| | | params.put("message", msg); |
| | | params.put("sender_id", "I-GO"); |
| | | params.put("callback_url", "http://182.160.16.251:80/user/base/sendCellulantMessageCallback"); |
| | | 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(); |
| | |
| | | } |
| | | |
| | | 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"} |
| | | //{"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."); |
| | | } |