From 7492607d9212f608bc0de2586ee1552ddfeeb24c Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 4 Oct 2020 11:02:57 -0400 Subject: [PATCH] Updated Notify_Custom_JSON (markdown) --- Notify_Custom_JSON.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Notify_Custom_JSON.md b/Notify_Custom_JSON.md index 7b3e2a6..6f8495a 100644 --- a/Notify_Custom_JSON.md +++ b/Notify_Custom_JSON.md @@ -49,7 +49,7 @@ apprise json://json.server.local ``` ### Header Manipulation -Some users may require special HTTP headers to be present when they post their data to their server. This can be accomplished by just sticking a hyphen (**-**) in front of any parameter you specify on your URL string. +Some users may require special HTTP headers to be present when they post their data to their server. This can be accomplished by just sticking a hyphen (**+**) in front of any parameter you specify on your URL string. ```bash # Below would set the header: # X-Token: abcdefg @@ -57,7 +57,7 @@ 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 -vv -t "Test Message Title" -b "Test Message Body" \ - "json://localhost:8080/path/?-X-Token=abcdefg" + "json://localhost:8080/path/?+X-Token=abcdefg" # Multiple headers just require more entries defined with a hyphen in front: # Below would set the headers: @@ -67,5 +67,5 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \ # Assuming our {hostname} is localhost # Assuming our {port} is 8080 apprise -vv -t "Test Message Title" -b "Test Message Body" \ - "json://localhost:8080/path/?-X-Token=abcdefg&-X-Apprise=is%20great" + "json://localhost:8080/path/?+X-Token=abcdefg&+X-Apprise=is%20great" ``` \ No newline at end of file