Updated Notify_notica (markdown)

master
Chris Caron 2020-08-03 10:04:18 -04:00
parent b830411e0d
commit 4ba591f5c8
1 changed files with 6 additions and 3 deletions

@ -49,7 +49,8 @@ Send a notica notification:
```bash ```bash
# Assuming our {token} is abc123 # Assuming our {token} is abc123
apprise notica://abc123 apprise -vv -t "Test Message Title" -b "Test Message Body" \
notica://abc123
``` ```
### Header Manipulation ### Header Manipulation
@ -60,7 +61,8 @@ Self-hosted solutions may require users to set special HTTP headers when they po
# #
# Assuming our {hostname} is localhost # Assuming our {hostname} is localhost
# Assuming our {token} is abc123 # Assuming our {token} is abc123
apprise "notica://localhost/abc123/?-X-Token=abcdefg" apprise -vv -t "Test Message Title" -b "Test Message Body" \
"notica://localhost/abc123/?-X-Token=abcdefg"
# Multiple headers just require more entries defined with a hyphen in front: # Multiple headers just require more entries defined with a hyphen in front:
# Below would set the headers: # Below would set the headers:
@ -69,5 +71,6 @@ apprise "notica://localhost/abc123/?-X-Token=abcdefg"
# #
# Assuming our {hostname} is localhost # Assuming our {hostname} is localhost
# Assuming our {token} is abc123 # Assuming our {token} is abc123
apprise "notica://localhost/abc123/?-X-Token=abcdefg&-X-Apprise=is%20great" apprise -vv -t "Test Message Title" -b "Test Message Body" \
"notica://localhost/abc123/?-X-Token=abcdefg&-X-Apprise=is%20great"
``` ```