fix(notification-providers): 更新 PushPlus 接口调用参数

- 将 post 请求中的 "pushPlusSendToken" 参数名称修改为 "pushPlusSendKey"
- 此修改解决了 PushPlus 接口调用时的参数名称错误问题
This commit is contained in:
Teror Fox 2025-03-22 15:36:13 +08:00
parent 82a79418ed
commit 387c31b488
No known key found for this signature in database
GPG key ID: 82B1E8A0C5C0BAEA

View file

@ -14,7 +14,7 @@ class PushPlus extends NotificationProvider {
const url = `https://www.pushplus.plus/send`;
try {
await axios.post(url, {
"token": notification.pushPlusSendToken,
"token": notification.pushPlusSendKey,
"title": this.checkStatus(heartbeatJSON, monitorJSON),
"content": msg,
"template": "html"