消息与事件接收URL接口 一直不回调接口: http://dev-system-api.usopa.com/employee/employee/notify/$APPID$/callback
偶尔看到一次是校验参数失败,
@PostMapping("/notify/{appId}/callback")
public Object callback(@RequestParam("timestamp") String timestamp,
@RequestParam("nonce") String nonce,
@RequestParam("msg_signature") String msgSignature,
@RequestBody String postData) throws DocumentException{....}
URL模板参数appId没有定义吧,@PathVariable。
看看文档吧
https://developers.weixin.qq.com/miniprogram/dev/framework/server-ability/message-push.html