Browse Source

小程序消息推送token修改

master
zy 2 months ago
parent
commit
9dff35ac96
  1. 25
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/weixin/WeChatController.java
  2. 2
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/weixin/WeChatService.java
  3. 1
      yudao-server/src/main/resources/application.yaml

25
yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/weixin/WeChatController.java

@ -1,11 +1,14 @@
package cn.iocoder.yudao.module.system.controller.admin.weixin;
import cn.iocoder.yudao.module.system.service.weixin.TokenValidatorService;
import cn.iocoder.yudao.module.system.service.weixin.WeChatService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import javax.annotation.security.PermitAll;
@RestController
@ -13,9 +16,15 @@ import javax.annotation.security.PermitAll;
@PermitAll
public class WeChatController {
@Autowired
@Resource
private WeChatService weChatService;
@Resource
private TokenValidatorService tokenValidatorService;
private static final String TOKEN = "hbts";
@GetMapping("/send")
@PermitAll
public String sendMessage() {
@ -30,4 +39,18 @@ public class WeChatController {
return "Failed to send message";
}
}
@GetMapping("/push")
@PermitAll
public String validate(@RequestParam("signature") String signature,
@RequestParam("timestamp") String timestamp,
@RequestParam("nonce") String nonce,
@RequestParam("echostr") String echostr) {
if (tokenValidatorService.validateToken(TOKEN, signature, timestamp, nonce)) {
return echostr;
}
return "";
}
}

2
yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/weixin/WeChatService.java

@ -47,7 +47,7 @@ public class WeChatService {
ObjectNode data = objectMapper.createObjectNode();
data.put("touser", openId); // 用户的 OpenID
data.put("template_id", templateId); // 订阅消息模板 ID
data.put("page", "pages/index/index"); // 点击消息跳转的小程序页面
data.put("page", "/sub/common/waiting"); // 点击消息跳转的小程序页面
data.put("data", objectMapper.createObjectNode()
.put("thing1", objectMapper.createObjectNode().put("value", "Hello, World!"))
.at("thing2"));

1
yudao-server/src/main/resources/application.yaml

@ -259,6 +259,7 @@ yudao:
- /admin-api/pay/notify/** # 支付回调通知,不携带租户编号
- /jmreport/* # 积木报表,无法携带租户编号
- /admin-api/mp/open/** # 微信公众号开放平台,微信回调接口,无法携带租户编号
- /admin-api/system/wechat/**
ignore-tables:
- system_tenant
- system_tenant_package

Loading…
Cancel
Save