小程序
小游戏
企业微信
微信支付
扫描小程序码分享
企业微信设置审批回调url出错,错误如下,openapi回调地址请求不通过是啥情况???
14 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
您好,应该是没有验证url的有效性吧,https://work.weixin.qq.com/api/doc/90000/90135/90930 参考下回调配置
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
Spring boot 开始的时候直接返回字符串也是不通过,最后使用response.getWriter().print()返回成功
@GetMapping("/message/processing") public void msgProcessing(@PathParam("msg_signature") String msg_signature, @PathParam("timestamp") String timestamp, @PathParam("nonce") String nonce, @PathParam("echostr") String echostr, HttpServletResponse response) { log.info("----------微信接口访问日志----------"); log.info("msg_signature:{},timestamp:{},nonce:{},echostr:{}",msg_signature,timestamp,nonce,echostr); String msg = weComMessageService.wecomMessagePush(msg_signature,timestamp,nonce,echostr); log.info("明文:{}",msg); log.info("----------微信接口访问结束----------"); try { response.getWriter().print(msg); } catch (IOException e) { throw new RuntimeException(e); } }
我用你们回调工具都成功了,你们哪个申请接收消息api测试还是回调不成功,搞什么呢
有解决方法了吗?大佬们
我也遇到同样的问题,请问有解决的吗?postman正常没有问题。
是不是只能接受80端口?
我也遇到过类似的问题,最后发现是返回格式有问题,需要直接echostr返回,我用了云函数需要选择集成响应
https://developer.work.weixin.qq.com/document/path/90930
我也遇到这样的问题了,postman和浏览器,访问都能返回明文,但是调试工具就是不行
页面直接访问
接收消息服务器配置保存的时候,服务器报错
java.security.InvalidKeyException: Illegal key size
at javax.crypto.Cipher.checkCryptoPerm(Cipher.java:1039)
at javax.crypto.Cipher.implInit(Cipher.java:805)
at javax.crypto.Cipher.chooseProvider(Cipher.java:864)
at javax.crypto.Cipher.init(Cipher.java:1396)
at javax.crypto.Cipher.init(Cipher.java:1327)
at com.monitor.web.monitor.weixinAes.WXBizMsgCrypt.decrypt(WXBizMsgCrypt.java:159)
WXBizMsgCrypt 159行代码
遇到同样的问题,用【企业微信接口调试工具】测试正常,但是在应用回调填写后,保存提示:openapi回调地址请求不通过。
通过抓包工具看到返回错误代码:-30065
正在加载...
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
您好,应该是没有验证url的有效性吧,https://work.weixin.qq.com/api/doc/90000/90135/90930 参考下回调配置
Spring boot 开始的时候直接返回字符串也是不通过,最后使用response.getWriter().print()返回成功
@GetMapping("/message/processing") public void msgProcessing(@PathParam("msg_signature") String msg_signature, @PathParam("timestamp") String timestamp, @PathParam("nonce") String nonce, @PathParam("echostr") String echostr, HttpServletResponse response) { log.info("----------微信接口访问日志----------"); log.info("msg_signature:{},timestamp:{},nonce:{},echostr:{}",msg_signature,timestamp,nonce,echostr); String msg = weComMessageService.wecomMessagePush(msg_signature,timestamp,nonce,echostr); log.info("明文:{}",msg); log.info("----------微信接口访问结束----------"); try { response.getWriter().print(msg); } catch (IOException e) { throw new RuntimeException(e); } }
我用你们回调工具都成功了,你们哪个申请接收消息api测试还是回调不成功,搞什么呢
有解决方法了吗?大佬们
我也遇到同样的问题,请问有解决的吗?postman正常没有问题。
是不是只能接受80端口?
我也遇到过类似的问题,最后发现是返回格式有问题,需要直接echostr返回,我用了云函数需要选择集成响应
https://developer.work.weixin.qq.com/document/path/90930
我也遇到这样的问题了,postman和浏览器,访问都能返回明文,但是调试工具就是不行
页面直接访问
接收消息服务器配置保存的时候,服务器报错
java.security.InvalidKeyException: Illegal key size
at javax.crypto.Cipher.checkCryptoPerm(Cipher.java:1039)
at javax.crypto.Cipher.implInit(Cipher.java:805)
at javax.crypto.Cipher.chooseProvider(Cipher.java:864)
at javax.crypto.Cipher.init(Cipher.java:1396)
at javax.crypto.Cipher.init(Cipher.java:1327)
at com.monitor.web.monitor.weixinAes.WXBizMsgCrypt.decrypt(WXBizMsgCrypt.java:159)
WXBizMsgCrypt 159行代码
遇到同样的问题,用【企业微信接口调试工具】测试正常,但是在应用回调填写后,保存提示:openapi回调地址请求不通过。
通过抓包工具看到返回错误代码:-30065