优秀接口http节点
ntfy配置
ntfy 就像你的“免费短信小助手”:
安装ntfyApp以后,只要往它的网址发一条 HTTP 请求,手机、电脑、平板就能立刻弹出通知,还能带图标、优先级、附件,甚至按钮。
不用注册、不用登录,开源、免费、自建也行,一行 curl 就能玩。
官网地址:https://docs.ntfy.sh/publish/
curl ntfy.sh \
-d '{
"topic": wxj-notice-2025-T4jmOwlCsUUichXJ", // 主题名称
"message": "Disk space is low at 5.1 GB", // 消息内容
"title": "Low disk space alert", // 标题
"tags": ["warning","cd"], // 标签
"priority": 4, // 优先级(1-5,分别对应最低、低、中、高、最高)
"attach": "https://filesrv.lan/space.jpg", // 附件URL
"filename": "diskspace.jpg", // 附件文件名
"click": "https://homecamera.lan/xasds1h2xsSsa/", // 点击跳转URL
"actions": [{
"action": "view", // 操作类型(view、reply、dismiss)
"label": "Admin panel", // 操作按钮文本
"url": "https://filesrv.lan/admin" // 操作按钮链接
}] // 操作按钮
}'