-
-
Notifications
You must be signed in to change notification settings - Fork 486
Notify_pushplus
Chris Caron edited this page Jul 7, 2025
·
1 revision
- Source: https://www.pushplus.plus/
- Icon Support: No
- Message Format: Plain Text
- Message Limit: ~20,000 Characters
Pushplus is a Chinese notification platform used to send alerts to WeChat or browser endpoints. It uses a token-based webhook system to deliver messages.
Once you create an account and subscribe to a channel, you will be issued a token used to send messages.
- Register or log into your account at Pushplus.
- From your dashboard, copy your Token under the "Push" section.
- Optionally configure the Pushplus app in WeChat for mobile delivery.
Your notification URL will look like this:
https://www.pushplus.plus/send?token=abc123def456ghi789jkl012mno345pq
Apprise supports both the full Pushplus native webhook URL and its simplified version.
Valid syntax is as follows:
https://www.pushplus.plus/send?token={token}
pushplus://{token}
Variable | Required | Description |
---|---|---|
token | Yes | Your personal Pushplus Token from your account settings |
apprise -vv -t "Title" -b "This is the body" \
pushplus://abc123def456ghi789jkl012mno345pq
apprise -vv -t "Title" -b "This is the body" \
pushplus://?token=abc123def456ghi789jkl012mno345pq
apprise -vv -t "Title" -b "This is the body" \
https://www.pushplus.plus/send?token=abc123def456ghi789jkl012mno345pq
All forms above are supported and deliver messages identically.