小程序
小游戏
企业微信
微信支付
扫描小程序码分享
配置的都对 token 和代码中都保持一致
但是就是提示 无效 帮忙看看啥原因 求解!
IP 白名单也已经添加
signature:24db5bcf6d7495f7b628dbde553be4946ac7af5d
timestamp:1700815011
nonce:1162013188
echostr:4403966966586372031
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
检测一下域名是不是被微信封禁了?封禁了也提示这个错误信息。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
检测一下域名是不是被微信封禁了?封禁了也提示这个错误信息。
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();
}
}