收藏
回答

基础配置 提示token验证失败

配置的都对 token 和代码中都保持一致

但是就是提示 无效 帮忙看看啥原因 求解!

IP 白名单也已经添加

signature:24db5bcf6d7495f7b628dbde553be4946ac7af5d

timestamp:1700815011

nonce:1162013188

echostr:4403966966586372031

回答关注问题邀请回答
收藏

2 个回答

  • 大山
    大山
    2023-11-24

    检测一下域名是不是被微信封禁了?封禁了也提示这个错误信息。

    2023-11-24
    有用
    回复
  • 不声不响
    不声不响
    2023-11-24

    2023-11-24
    有用
    回复 1
    • 不声不响
      不声不响
      2023-11-24
      解决了 


       public void wechatEvent(HttpServletRequest request,HttpServletResponse response, @RequestBody(required = false) String body) {
              log.error("--------------------接收微信推送事件-----------------------");
              PrintWriter out = null;
              try {
                  out = response.getWriter();


                  if (body == null) {


                      String content = wxService.verificationUrl(request);
                      out.print(content);
                      return;
                  }


                  log.info(body);


                  wxService.getRequestParameter(request,body);
                  out.print("success");
              } catch (Exception e) {
                  e.printStackTrace();
              }
          }
      2023-11-24
      回复
登录 后发表内容