| 方法 | 路径 | 鉴权 | 说明 |
|---|---|---|---|
| GET | /health | 无 | 健康检查 |
| GET | /status | X-Secret / ?secret= | 设备配对状态 |
| GET | /register?secret=&token= | 密钥 | 手机配对(App 自动调用) |
| POST | /push | Header X-Secret | 发送推送,字段 title / body / from(可选) |
| GET | /history | X-Secret / ?secret= | 推送留痕(最多100条,新→旧) |
curl -X POST https://sticker.991201.xyz/push \
-H "Content-Type: application/json" \
-H "X-Secret: 你的密钥" \
-d '{"title":"NAS 磁盘告警","body":"volume1 使用率超过 95%","from":"NAS"}'
成功返回:{"ok":true,"huawei":{"code":"80000000","msg":"Success"}}