qbit_manage + pushplus:种子整理结果推到微信
效果:qbit_manage 清理、分类、打标跑完或出错时,通过 Apprise 发到 pushplus。
前置条件
- 一个 pushplus token(官网扫码获取)
- 已能连上 qBittorrent 的 qbit_manage,建议同时有 apprise-api
配置步骤
在 config.yml 的通知段启用 Apprise(字段名以当前版示例为准):
notifications:
apprise:
api_url: http://apprise:8000
notify_url:
- pushplus://你的token
没有独立 apprise-api、但工具支持直接填 URL 时,同样用 pushplus://你的token。见 Apprise。
部分版本还提供按事件拆分的 webhook(error / run_end 等)。只能填 URL 时:
https://www.pushplus.plus/send?token=你的token&title=qbit_manage通知&content=请查看本次整理日志
建议 error 才推,日常成功跑完不必每小时一条。token 不要写进公开配置仓库。
验证
curl -X POST "https://www.pushplus.plus/send" \
-H "Content-Type: application/json" \
-d '{"token":"你的token","title":"qbit_manage 配置测试","content":"token 可用","template":"markdown"}'
再执行一次 --dry-run 或带错误的配置,确认通知通道可用。
常见问题
有日志没推送? 确认 api_url 在容器网络里可达;不要用 localhost 指向邻居服务。
每次定时都推? 关掉 run_start / 成功 run_end,只留 error。