changedetection.io + pushplus:网页变了推到微信
效果:监控的页面标题或正文发生变化时,微信收到一条变更通知。
changedetection.io 内置 Apprise。在通知 URL 里填 pushplus://你的token 即可。
前置条件
- 一个 pushplus token(官网扫码获取)
- 已部署的 changedetection.io,能编辑 Watch
配置步骤
- 右上角进入 Settings → Notifications,或打开某条 Watch → Notifications。
- Notification URL List 增加一行:
pushplus://你的token
一对多:pushplus://你的token/群组编码。页面标题/差异正文会映射为 title / content。 3. 需要时加上 Apprise 参数(以 changedetection 当前文档为准),例如只在有差异时发送。 4. 点 Send test notification,再 Save。全局 URL 会被 Watch 继承;单条 Watch 也可覆盖。 5. 在 Watch 的 Filters & Triggers 里把 CSS/JSON 过滤配准,减少无关键变化。
没有 Apprise 栏、只能填 Webhook 时用 GET 固定文案(对方 POST 的差异 JSON 不会自动当 content):
https://www.pushplus.plus/send?token=你的token&title=网页有变更&content=请打开changedetection查看差异
完整字段见 消息接口。更多 URL 形态见 Apprise。
验证
curl -X POST "https://www.pushplus.plus/send" \
-H "Content-Type: application/json" \
-d '{"token":"你的token","title":"changedetection 配置测试","content":"token 可用","template":"markdown"}'
常见问题
测试有、真实变更没有? 看该 Watch 是否勾选了通知,以及过滤条件是否把差异滤没了。额度与网络见 收不到消息、接口限制。
广告轮播刷屏? 用 CSS 选择器只盯正文,并加大检查间隔。