-
-
Notifications
You must be signed in to change notification settings - Fork 486
Notify_qq
Chris Caron edited this page Jul 7, 2025
·
1 revision
- Source: https://github.com/songquanpeng/message-pusher
- Icon Support: No
- Message Format: Plain Text
- Message Limit: ~10,000 Characters
QQ Push is a third-party gateway for sending notifications to QQ users via services like qmsg.zendee.cn.
To use it with Apprise, you'll need to register and obtain a personal Token.
- Visit qmsg.zendee.cn and sign in using your QQ account.
- Once logged in, generate and copy your token.
- You’ll receive a webhook URL like this:
https://qmsg.zendee.cn/send/abc123def456ghi789jkl012mno345pq
You can use the full native webhook or a simplified Apprise URL.
Valid syntax is as follows:
https://qmsg.zendee.cn/send/{token}
qq://{token}
qq://?token={token}
Variable | Required | Description |
---|---|---|
token | Yes | Your personal QQ Push token from qmsg.zendee.cn |
apprise -vv -t "QQ Title" -b "Message content" \
qq://abc123def456ghi789jkl012mno345pq
apprise -vv -t "QQ Title" -b "Message content" \
qq://?token=abc123def456ghi789jkl012mno345pq
apprise -vv -t "QQ Title" -b "Message content" \
https://qmsg.zendee.cn/send/abc123def456ghi789jkl012mno345pq
All formats above are accepted and deliver the same result.