xiaoyong931011
2023-07-15 217882984233d0541de9a9cd99b6a97eb22b2fe9
src/main/java/cc/mrbird/febs/pay/controller/AutoReplyController.java
@@ -22,17 +22,7 @@
@RequestMapping(value = "/api/wechat/reply")
public class AutoReplyController {
    private final XcxProperties xcxProperties = SpringContextHolder.getBean(XcxProperties.class);
//    @Value("${wechat.appId}")
//    private String wechatAppId;
//
//    @Value("${wechat.appSecret}")
//    private String wechatAppSecret;
//
//    // 这个Token就是微信后台 服务器配置 中的Token
//    @Value("${wechat.token}")
//    private String wechatToken;
    private final String wechatToken = "ywgpzfwh";
    /**
     * 服务器校验
@@ -41,7 +31,7 @@
     */
    @GetMapping("/event")
    public String verification(HttpServletRequest req) {
        return WechatEventUtil.verification(req, xcxProperties.getWechatToken());
        return WechatEventUtil.verification(req, wechatToken);
    }
    /**