Updated Notify_Custom_JSON (markdown)

master
Chris Caron 2020-08-03 09:43:33 -04:00
parent 7ff0abb144
commit d994cfd24f
1 changed files with 4 additions and 2 deletions

@ -56,7 +56,8 @@ Some users may require special HTTP headers to be present when they post their d
#
# Assuming our {hostname} is localhost
# Assuming our {port} is 8080
apprise "json://localhost:8080/path/?-X-Token=abcdefg"
apprise -vv -t "Test Message Title" -b "Test Message Body" \
"json://localhost:8080/path/?-X-Token=abcdefg"
# Multiple headers just require more entries defined with a hyphen in front:
# Below would set the headers:
@ -65,5 +66,6 @@ apprise "json://localhost:8080/path/?-X-Token=abcdefg"
#
# Assuming our {hostname} is localhost
# Assuming our {port} is 8080
apprise "json://localhost:8080/path/?-X-Token=abcdefg&-X-Apprise=is%20great"
apprise -vv -t "Test Message Title" -b "Test Message Body" \
"json://localhost:8080/path/?-X-Token=abcdefg&-X-Apprise=is%20great"
```