mirror of https://github.com/caronc/apprise
Updated Notify_pushover (markdown)
parent
2b348d3352
commit
002039a6b6
|
@ -9,14 +9,14 @@ There isn't too much configuration for Pushover notifications. The message is ba
|
||||||
By default,
|
By default,
|
||||||
### Syntax
|
### Syntax
|
||||||
Valid syntax is as follows:
|
Valid syntax is as follows:
|
||||||
* **pover**://**{user_id}**@**{token}**
|
* **pover**://**{user_key}**@**{token}**
|
||||||
* **pover**://**{user_id}**@**{token}**/**{device_id}**
|
* **pover**://**{user_key}**@**{token}**/**{device_id}**
|
||||||
* **pover**://**{user_id}**@**{token}**/**{device_id1}**/**{device_id2}**/**{device_idN}**
|
* **pover**://**{user_key}**@**{token}**/**{device_id1}**/**{device_id2}**/**{device_idN}**
|
||||||
* **pover**://**{user_id}**@**{token}**?**priority={priority}**
|
* **pover**://**{user_key}**@**{token}**?**priority={priority}**
|
||||||
### Parameter Breakdown
|
### Parameter Breakdown
|
||||||
| Variable | Required | Description
|
| Variable | Required | Description
|
||||||
| ----------- | -------- | -----------
|
| ----------- | -------- | -----------
|
||||||
| user_id | Yes | The user identifier associated with your Pushover account.
|
| user_key | Yes | The user key identifier associated with your Pushover account. This is NOT your email address. The key can be acquired from your Pushover dashboard.
|
||||||
| token | Yes | The token associated with your Pushover account.
|
| token | Yes | The token associated with your Pushover account.
|
||||||
| device_id | No | The device identifier to send your notification to. By default if one isn't specified then all of devices associated with your account are notified.
|
| device_id | No | The device identifier to send your notification to. By default if one isn't specified then all of devices associated with your account are notified.
|
||||||
| priority | No | Can be **low**, **moderate**, **normal**, **high**, or **emergency**; the default is **normal** if a priority isn't specified.
|
| priority | No | Can be **low**, **moderate**, **normal**, **high**, or **emergency**; the default is **normal** if a priority isn't specified.
|
||||||
|
@ -24,7 +24,7 @@ Valid syntax is as follows:
|
||||||
#### Example
|
#### Example
|
||||||
Send a Pushover notification to all of our configured devices:
|
Send a Pushover notification to all of our configured devices:
|
||||||
```bash
|
```bash
|
||||||
# Assuming our {user} is nuxref
|
# Assuming our {user_key} is 435jdj3k78435jdj3k78435jdj3k78
|
||||||
# Assuming our {token} is abcdefghijklmnop-abcdefg
|
# Assuming our {token} is abcdefghijklmnop-abcdefg
|
||||||
apprise pover://nuxref@abcdefghijklmnop-abcdefg
|
apprise pover://435jdj3k78435jdj3k78435jdj3k78@abcdefghijklmnop-abcdefg
|
||||||
```
|
```
|
Loading…
Reference in New Issue