op-packages/openwrt-natmap/files/pushplus.sh
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

16 lines
339 B
Bash
Executable File

#!/bin/sh
text="$1"
token=$2
curl --retry 10 -4 -Ss -X POST \
-H 'Content-Type: application/json' \
-d '{"token": "'"${IM_NOTIFY_CHANNEL_PUSHPLUS_TOKEN}"'", "content": "'"${text}"'", "title": "NATMap"}' \
"http://www.pushplus.plus/send"
if [ $? -eq 0 ]; then
echo "Send pushplus success"
else
echo "Send pushplus failed"
exit 1
fi