mirror of https://github.com/caronc/apprise
Updated Notify_pushover (markdown)
parent
96282f3061
commit
98ded8a17b
|
@ -14,10 +14,11 @@ On the dashboard after logging in, if you scroll down you'll have the ability to
|
||||||
|
|
||||||
### Syntax
|
### Syntax
|
||||||
Valid syntax is as follows:
|
Valid syntax is as follows:
|
||||||
* **pover**://**{user_key}**@**{token}**
|
* `pover://{user_key}@{token}`
|
||||||
* **pover**://**{user_key}**@**{token}**/**{device_id}**
|
* `pover://{user_key}@{token}/{device_id}`
|
||||||
* **pover**://**{user_key}**@**{token}**/**{device_id1}**/**{device_id2}**/**{device_idN}**
|
* `pover://{user_key}@{token}/{device_id1}/{device_id2}/{device_idN}`
|
||||||
* **pover**://**{user_key}**@**{token}**?**priority={priority}**
|
* `pover://{user_key}@{token}?priority={priority}`
|
||||||
|
* `pover://{user_key}@{token}?priority=emergency&expire={expire}&retry={retry}`
|
||||||
### Parameter Breakdown
|
### Parameter Breakdown
|
||||||
| Variable | Required | Description
|
| Variable | Required | Description
|
||||||
| ----------- | -------- | -----------
|
| ----------- | -------- | -----------
|
||||||
|
@ -35,4 +36,15 @@ Send a Pushover notification to all of our configured devices:
|
||||||
# Assuming our {user_key} is 435jdj3k78435jdj3k78435jdj3k78
|
# Assuming our {user_key} is 435jdj3k78435jdj3k78435jdj3k78
|
||||||
# Assuming our {token} is abcdefghijklmnop-abcdefg
|
# Assuming our {token} is abcdefghijklmnop-abcdefg
|
||||||
apprise pover://435jdj3k78435jdj3k78435jdj3k78@abcdefghijklmnop-abcdefg
|
apprise pover://435jdj3k78435jdj3k78435jdj3k78@abcdefghijklmnop-abcdefg
|
||||||
|
```
|
||||||
|
|
||||||
|
Send a Pushover notification with the Emergency Priority:
|
||||||
|
```bash
|
||||||
|
# Emergency priority advises you to also specify the expire and
|
||||||
|
# retry values.
|
||||||
|
# Assuming our {user_key} is 435jdj3k78435jdj3k78435jdj3k78
|
||||||
|
# Assuming our {token} is abcdefghijklmnop-abcdefg
|
||||||
|
# The following will set a 1hr expiry and attempt to resend
|
||||||
|
# the message every 10 minutes:
|
||||||
|
apprise pover://435jdj3k78435jdj3k78435jdj3k78@abcdefghijklmnop-abcdefg?priority=emergency&retry=600&expire=3600
|
||||||
```
|
```
|
Loading…
Reference in New Issue