当前位置:   article > 正文

java实现微信小程序客服功能开发,后台接受用户发送消息实现关键词自动回复_java 微信小程序客服消息 根据用户消息内容自动回复

java 微信小程序客服消息 根据用户消息内容自动回复

最近做了一个小程序中间用到了小程序客服功能,主要实现采集用户提问,并且针对关键词自动回复及手动回复。中间踩过很多坑,所也现在记录下来提供给大家。

准备

首先准备一个小程序,配置好域名,左边菜单栏目点击开发-->找到推送(然后这是服务器地址,此地址会接收用户发送消息)设置好后点击启用。

小程序实现 

小程序打开客服功能很简单只需要加入如下代码就可以直接打开客服界面,然后直接发送消息就完事

<button open-type='contact'>联系客服</button>

 后台功能实现

  1. /**
  2. * 微信接口配置信息认证接口<br>
  3. * 需要正确响应微信发送的Token验证。 加密/校验流程如下:<br>
  4. * 1. 将token、timestamp、nonce三个参数进行字典序排序<br>
  5. * 2. 将三个参数字符串拼接成一个字符串进行sha1加密<br>
  6. * 3. 开发者获得加密后的字符串可与signature对比,标识该请求来源于微信
  7. */
  8. @RequestMapping("/cgi")
  9. public void cgi(HttpServletRequest request, HttpServletResponse response) {
  10. boolean isGet = request.getMethod().toLowerCase().equals("get");
  11. // 微信加密签名,signature结合了开发者填写的token参数和请求中的timestamp参数、nonce参数。
  12. try {
  13. if (isGet) {
  14. String signature = request.getParameter("signature");
  15. // 时间戳
  16. String timestamp = request.getParameter("timestamp");
  17. // 随机数
  18. String nonce = request.getParameter("nonce");
  19. // 随机字符串
  20. String echostr = request.getParameter("echostr");
  21. logger.info("signature = "+signature+" , timestamp = "+timestamp+ " , nonce = "+nonce+ " , echostr = "+echostr);
  22. String[] strArray = new String[] { hmh_token, timestamp, nonce };
  23. Arrays.sort(strArray);
  24. StringBuilder sb = new StringBuilder();
  25. for (String str : strArray) {
  26. sb.append(str);
  27. }
  28. String encrypt = SHA1.getDigestOfString(sb.toString().getBytes());
  29. if (encrypt.equals(signature)) {
  30. response.getOutputStream().write(echostr.getBytes());
  31. }
  32. }else{
  33. // 进入POST聊天处理
  34. // 将请求、响应的编码均设置为UTF-8(防止中文乱码)
  35. request.setCharacterEncoding("UTF-8");
  36. response.setCharacterEncoding("UTF-8");
  37. // 接收消息并返回消息
  38. String result = acceptMessage(request, response);
  39. // 响应消息
  40. PrintWriter out = response.getWriter();
  41. out.print(result);
  42. out.close();
  43. }
  44. } catch (Exception ex) {
  45. logger.error("微信帐号接口配置失败!", ex);
  46. ex.printStackTrace();
  47. }
  48. }
  49. /**
  50. * 接受到微信接口数据
  51. * @param request
  52. * @param response
  53. * @return
  54. */
  55. private String acceptMessage(HttpServletRequest request, HttpServletResponse response) {
  56. // {CreateTime=1548042266, Event=user_enter_tempsession, ToUserName=gh_e6198220cbff,
  57. // FromUserName=oZvme4q2Oi7Dz3FChXc43kqw28, MsgType=event, SessionFrom=wxapp}
  58. String respMessage = "";
  59. try {
  60. // xml请求解析
  61. Map<String, String> requestMap = MessageUtil.parseXml(request);
  62. logger.info(">>>>>>>>>>>>>"+requestMap);
  63. // 发送方帐号(open_id)
  64. String fromUserName = requestMap.get("FromUserName");
  65. // 公众帐号
  66. String toUserName = requestMap.get("ToUserName");
  67. // 消息类型
  68. String msgType = requestMap.get("MsgType");
  69. String Event = requestMap.get("Event"); //SCAN 为扫描信息 VIEW 公众号底部点击事件
  70. logger.info("fromUserName = "+fromUserName+" , ToUserName = "+toUserName+ " , msgType = "+msgType);
  71. HmhWxTokenEntity tokenEntity = hmhWxTokenService.getHmhWxTokenInfoById(Long.parseLong(String.valueOf(1)));
  72. StringBuffer contentMsg = new StringBuffer();
  73. String html = "https://xxxxx.cn/index/wechat/index.html?oid="+fromUserName;
  74. String url = "☞ <a href=\""+html+"\">点击跳转</a>";
  75. //公众号关注事件消息
  76. if(msgType.equals("event")){
  77. contentMsg.append("↓↓您的专属充值链接↓↓").append("\n");
  78. contentMsg.append(url);
  79. if(tokenEntity!=null){
  80. WxUtil.sendKfMessage(fromUserName,contentMsg.toString(),tokenEntity.getWxToken()); //把封装好的信息推送给用户
  81. }
  82. }else if(msgType.equals("text")){
  83. logger.info("公众号接受文字..........");
  84. contentMsg.append("↓↓您的专属充值链接↓↓").append("\n");
  85. contentMsg.append(url);
  86. if(tokenEntity!=null){
  87. WxUtil.sendKfMessage(fromUserName,contentMsg.toString(),tokenEntity.getWxToken());
  88. }
  89. }else if(msgType.equals("image")){
  90. logger.info("公众号接受图片..........");
  91. }
  92. } catch (Exception e) {
  93. e.printStackTrace();
  94. }
  95. return respMessage;
  96. }
  1. //客服消息推送地址
  2. public final static String kf_url = "https://api.weixin.qq.com/cgi-bin/message/custom/send";
  3. public static String getToken() throws Exception{
  4. String accessToken = HttpUtils.doGet(url);
  5. com.alibaba.fastjson.JSONObject jsonObject = com.alibaba.fastjson.JSONObject.parseObject(accessToken);
  6. return String.valueOf(jsonObject.get("access_token"));
  7. }
  8. public static String sendKfMessage(String openid,String text,String access_token)throws Exception{
  9. Map<String,Object> map_content = new HashMap<>();
  10. map_content.put("content",text);
  11. Map<String,Object> map = new HashMap<>();
  12. map.put("touser",openid);
  13. map.put("msgtype","text");
  14. map.put("text",map_content);
  15. String content = JSONUtils.toJSONString(map);
  16. return HttpUtils.doPost(kf_url+"?access_token="+access_token,content);
  17. }

小程序客服消息官方文档:

https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/customer-message/receive.html

有啥问题直接点击博客左边 wx +我注明问题 。

更多优质文章请关注我的微信公众号【java后端技术精选】,回复“1024”和“面试”可以领取优质的视频学习资源

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/341529
推荐阅读
相关标签
  

闽ICP备14008679号