-
Notifications
You must be signed in to change notification settings - Fork 94
Pushover
Jevgeni Kiski edited this page Mar 9, 2021
·
8 revisions
- On Pushover website
- Register
- Create New Application/API Token
- Take a note of API Token/Key
- Register some devices.
- Change device names
- (optional) Create a group
- Take a note of group or user token/key
- Test via
Push a Notification
for a target group or all devices
- If all is fine proceed to PAI Configuration
PUSHOVER_ENABLE: true
PUSHOVER_KEY: 'xxxxx'
# Send to specific devices
PUSHOVER_BROADCAST_KEYS:
- user_key: 'yyyyy'
devices: 'My_iPhone,Wife_iPhone'
# - or -
# Send to whole group or all devices on account
# PUSHOVER_BROADCAST_KEYS:
# - user_key: 'yyyyy'
# devices: '*'
YAML:
PUSHOVER_ENABLE: true
PUSHOVER_KEY: xxxxx
PUSHOVER_BROADCAST_KEYS:
- user_key: yyyy
devices: '*'
Where:
-
xxxxx
is Application/API token/key -
yyyyy
is your User or Group Key on your pushover account. -
My_iPhone,Wife_iPhone
should be a list of comma separated device names as on pushover website.*
can be used to send to all devices.
See Event filtering