This commit is contained in:
van
2026-04-12 01:19:10 +08:00
parent 1446ea2432
commit c825c6b81a
8 changed files with 74 additions and 52 deletions

View File

@@ -947,7 +947,7 @@ public class TencentDocController extends BaseController {
sb.append("… 共 ").append(errorLogs.size()).append(" 条错误\n");
}
}
wxSendGoofishNotifyClient.pushGoofishAgentText(null, sb.toString());
wxSendGoofishNotifyClient.pushGoofishAgentText(null, "", sb.toString());
}
/**
@@ -2015,7 +2015,7 @@ public class TencentDocController extends BaseController {
log.error("异常后更新批量推送记录失败 batchId={}", batchId, ex);
}
try {
wxSendGoofishNotifyClient.pushGoofishAgentText(null,
wxSendGoofishNotifyClient.pushGoofishAgentText(null, "",
"【腾讯文档推送】批量同步异常\n批次: " + batchId + "\n" + errMsg);
} catch (Exception ex) {
log.warn("腾讯文档推送异常企微通知失败: {}", ex.toString());

View File

@@ -148,7 +148,7 @@ public class ServerController
}
/**
* 手动测试企微闲鱼通知(经 wxSend goofish-active-push
* 手动测试企微闲鱼通知(经 wxSend POST /wx/send/goofish与 /send/pdd 相同 vanToken + title/text/touser
*/
@PreAuthorize("@ss.hasPermi('monitor:server:list')")
@PostMapping("/health/goofish-notify-test")

View File

@@ -220,8 +220,8 @@ jarvis:
wxsend-base-url: http://127.0.0.1:36699
# 须与 wxSend jarvis.wecom.push-secret 一致Header X-WxSend-WeCom-Push-Secret
push-secret: jarvis_wecom_push_change_me
# 闲鱼订单事件 → wxSend POST /wecom/goofish-active-push须与 wxSend goofish-push-secret 一致
goofish-push-secret: jarvis_wecom_goofish_push_change_me
# 与 /wx/send/pdd、/wx/send/goofish 请求头 vanToken 一致wxSend TokenUtil
wxsend-van-token: super_token_b62190c26
# 接收企微通知的成员 UserID多个逗号或 |;留空则不推送
goofish-notify-touser: "LinPinFan"
# 多轮会话:与 JDUtil interaction_state 类似TTL 与空闲超时(分钟)

View File

@@ -214,7 +214,7 @@ jarvis:
inbound-secret: jarvis_wecom_bridge_change_me
wxsend-base-url: http://127.0.0.1:36699
push-secret: jarvis_wecom_push_change_me
goofish-push-secret: jarvis_wecom_goofish_push_change_me
wxsend-van-token: super_token_b62190c26
goofish-notify-touser: "LinPinFan"
session-ttl-minutes: 30
session-idle-timeout-minutes: 30