微信公众号发送消息模板(java)
2018-08-21 05:31:51来源:博客园 阅读 ()
这段时间接触公众号开发,写下向用户发送消息模板的接口调用
先上接口代码
1 public static JSONObject sendModelMessage(ServletContext context,JSONObject jsonMsg) { 2 System.out.println("消息内容:"+jsonMsg); 3 boolean result = false; 4 try { 5 getWX_AccessToken(context); 6 } catch (Exception e) { 7 // TODO Auto-generated catch block 8 e.printStackTrace(); 9 } 10 // 拼接请求地址 11 String requestUrl = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=ACCESS_TOKEN"; 12 requestUrl = requestUrl.replace("ACCESS_TOKEN", context.getAttribute(ContextTokenName).toString()); 1314 // 发送客服消息 15 JSONObject jsonObject = getJsonByWX(requestUrl, context, "POST",jsonMsg, false); 16 17 if (null != jsonObject) { 18 int errorCode = jsonObject.getInt("errcode"); 19 String errorMsg = jsonObject.getString("errmsg"); 20 if (0 == errorCode) { 21 result = true; 22 System.out.println("模板消息发送成功 errcode:{} "+errorCode+"----"+errorMsg); 23 } else { 24 System.out.println("模板消息发送失败 errcode:{} "+errorCode+"----"+errorMsg); 25 } 26 } 27 28 return null; 29 }
15行那段getJsonByWX是统一调用微信接口的方法,每个项目都有自己的调用方法,我这里就不贴了。接口调用链接:https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=ACCESS_TOKEN
接下来就是建个bean类,里面写入一下颜色及值
1 private String value; 2 private String color; 3 4 public String getValue() { 5 return value; 6 } 7 8 public void setValue(String value) { 9 this.value = value; 10 } 11 12 public String getColor() { 13 return color; 14 } 15 16 public void setColor(String color) { 17 this.color = color; 18 }
在公众号里填写模板消息的对应格式
之后就是有个触发点,我选择发货后把发货信息发送给用户
PageData wechatTemplate = new PageData(); wechatTemplate.put("template_id", "填写你的模板id"); wechatTemplate.put("touser", userInfo.get("openid"));//获取用户的openid Map<String,TemplateMessageUtil> mapdata = new HashMap<>(); TemplateMessageUtil first = new TemplateMessageUtil(); first.setColor("#173177"); first.setValue("发货通知"); mapdata.put("first", first); TemplateMessageUtil text1 = new TemplateMessageUtil(); text1.setColor("#173177"); text1.setValue("您好,您所购买的商品已发货。"); mapdata.put("text1", text1); TemplateMessageUtil text2 = new TemplateMessageUtil(); text2.setColor("#173177"); text2.setValue(expresser_name); mapdata.put("text2", text2); TemplateMessageUtil text3 = new TemplateMessageUtil(); text3.setColor("#173177"); text3.setValue(expresser_phone); mapdata.put("text3", text3); TemplateMessageUtil remark = new TemplateMessageUtil(); remark.setColor("#173177"); remark.setValue("请保持电话畅通>>"); mapdata.put("remark", remark); JSONObject json = new JSONObject(); json.put("data",mapdata); json.putAll(wechatTemplate);//转为json WXInterface.sendModelMessage(context,json);
之后手机就会收到信息了
整体思路是这样,也是参照百度而来,因为每个人的项目里方法都不一样,我就不详细贴上,既然做到发送模板消息了,统一调用微信接口的方法应每个人该也早写在工具类里了,每个人都不同,当应该都有,调用这个方法,把微信模板消息连接的条件access_token写进去就请求了,剩下的就是传入你要发送的消息,消息存入集合,集合转json才行,JSONObject类相信也都有,我也不贴了,每个人项目都不一样,没必要照搬过去,就照着自己原先已有的类改进。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:cookie来实现购物车功能
下一篇:Day03 流程控制
- SpringBoot实现微信小程序登录的完整例子 2020-06-01
- 如何利用Spring Boot 整合微信小程序实现登录与增删改查(含 2020-05-20
- SpringBoot系列(十四)集成邮件发送服务及邮件发送的几种方 2020-05-09
- Springboot整合微信小程序实现登录与增删改查 2020-05-01
- springboot整合redis之发送手机验证码注册登录 2020-04-22
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash