当前位置:   article > 正文

微信小程序自动回复用户消息_微信小程序客服自动回复源码

微信小程序客服自动回复源码

最近用java做了一个实现在微信小程序内根据用户发送的消息内容回复用不通的消息功能,相当于一个自动回复的客服消息,效果图如下:

 

当用户在小程序输入框中输入内容或其他操作时,后台根据用户输入的内容动态给用户回复,微信的参考文档为:

微信小程序客服消息回复开发
customerServiceMessage.send 档
微信的垃圾文档我就懒得喷了啊,按它这个文档做简直是一团乱麻

整个流程是这样的我们可以在微信小程序的开发者后台设置消息的回调地址,当用户进入小程序的客服页面,或在客服页面的输入框中输入内容时,微信小程序就会根据我们配置的消息回调地址把这条消息或这个事件回调给我们的服务器,我们可以进行相关处理,并给用户回复消息如上图显示的那些我输入 22 ,给我回复一个链接地址或其他东西,可以在回调中配置;

然后遇到的几个问题说一下:

1、回调地址解析:在微信后台配置回调地址时它会先发一个get请求测试地址是否可用,然后用户在发消息的时候会发post请求把用户消息发过来:如下

  1. @Override
  2. public void autoResponse(HttpServletRequest req, HttpServletResponse resp) throws Exception {
  3. switch (req.getMethod().toUpperCase()){
  4. case GET:
  5. doGet(req, resp);
  6. break;
  7. case POST:
  8. doPost(req, resp);
  9. break;
  10. default:
  11. throw new IllegalStateException("Unexpected value: " + req.getMethod());
  12. }
  13. }

//回复get请求,说明地址可用

  1. private void doGet(HttpServletRequest req, HttpServletResponse resp) throws Exception {
  2. // 将请求、响应的编码均设置为UTF-8(防止中文乱码)
  3. req.setCharacterEncoding("UTF-8");
  4. resp.setCharacterEncoding("UTF-8");
  5. String signature = req.getParameter("signature");
  6. String timestamp = req.getParameter("timestamp");
  7. String nonce = req.getParameter("nonce");
  8. String echostr = req.getParameter("echostr");
  9. String sortString = SignUtil.sort(config.getRespToken(), timestamp, nonce);
  10. String mySignature = SignUtil.sha1(sortString);
  11. if (mySignature != null && mySignature != "" && mySignature.equals(signature)) {
  12. resp.getWriter().write(echostr);
  13. } else {
  14. log.error("签名校验失败.");
  15. }
  16. }

//回复post请求

  1. private void doPost(HttpServletRequest req, HttpServletResponse resp)throws Exception {
  2. try{
  3. resp.setCharacterEncoding("UTF-8");
  4. resp.setCharacterEncoding("UTF-8");
  5. String line = null;
  6. StringBuffer xmlStr = new StringBuffer();
  7. BufferedReader reader = req.getReader();
  8. while ((line = reader.readLine()) != null) {
  9. log.info(line);
  10. xmlStr.append(line);
  11. }
  12. Map<String,String> map = XmlUtil.xmlToMap(xmlStr.toString());
  13. CustomerMsgReq customerMsgReq = WXAutoRespReqUtil.buildResponseMessage(map, config.getAppletsAppId(), config.getRespHref(), config.getRespText());
  14. log.info("send custom message param :{}", customerMsgReq);
  15. if(customerMsgReq == null){
  16. return;
  17. }
  18. String accessToken = getCacheAccessToken();
  19. JSONObject sendResult = wxAppletsRemoting.messageCustomSend(accessToken, customerMsgReq);
  20. log.info("send custom message result :{}", sendResult);
  21. if(sendResult.containsKey(("errcode")) && sendResult.getString("errcode").equals("0.0")){
  22. return;
  23. }
  24. log.error("access token may expire", sendResult);
  25. accessToken = getRealAccessToken();
  26. sendResult = wxAppletsRemoting.messageCustomSend(accessToken, customerMsgReq);
  27. log.info("resend custom message result :{}", sendResult);
  28. }finally {
  29. resp.getWriter().println("success");
  30. }

这里有一个问题,根据文档描述应该可以直接在回调接口中回复用户消息,如下这样操作,但是实际开发中,我测试这样回复用户没有收到消息,也不报错,不知道是我理解有问题还是哪里配置有问题,欢迎各位小伙伴指正

  1. private void doPost(HttpServletRequest req, HttpServletResponse resp)throws Exception {
  2. try{
  3. resp.setCharacterEncoding("UTF-8");
  4. resp.setCharacterEncoding("UTF-8");
  5. String line = null;
  6. StringBuffer xmlStr = new StringBuffer();
  7. BufferedReader reader = req.getReader();
  8. while ((line = reader.readLine()) != null) {
  9. log.info(line);
  10. xmlStr.append(line);
  11. }
  12. Map<String,String> map = XmlUtil.xmlToMap(xmlStr.toString());
  13. //链接内容
  14. String msgText ="<a href=\""+href+"\">"+text+"</a>";ZZ
  15. //发送方帐号
  16. String fromUserName = map.get("FromUserName");
  17. // 开发者微信号
  18. String toUserName = map.get("ToUserName");
  19. String respXml = String.format( "<xml>" +
  20. "<ToUserName><![CDATA[%s]]></ToUserName>" +
  21. "<FromUserName><![CDATA[%s]]></FromUserName>" +
  22. "<CreateTime>%s</CreateTime>" +
  23. "<MsgType><![CDATA[text]]></MsgType>" +
  24. "<Content><![CDATA[%s]]></Content>" +
  25. "</xml>", fromUserName, toUserName, getMessageCreateTime(), msgText);
  26. resp.setContentType("application/xml; charset=utf-8");
  27. resp.getWriter().println(respXml);
  28. }finally {
  29. }

因为不能直接回复,需要调微信 

POST https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=ACCESS_TOKEN

这个接口给用户回复,参考微信文档

customerServiceMessage.send 档

因此又牵扯到获取微信小程序appid,secret 然后根据appid,secret获取access_token 还有access_token的缓存等一大堆问题,我就不细说了,涉及到的代码已提交到码云

最近又有小伙伴请教微信小程序自动回复的问题,在交流的时候,发现了一个新的东西,微信云回复,逻辑就是在微信小程序的后台上传一个云服务的回复接口js,后面要自动回复用户消息的时候就直接调 云服务的回复接口,这样可以省去提供自动回复服务端的实现,可以不用自己再维护后台服务了

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

闽ICP备14008679号