From 7a46b6ec14963b33a2142abc3bb22cde239ee6a0 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Mon, 3 Aug 2020 10:12:25 -0400 Subject: [PATCH] Updated Notify_enigma2 (markdown) --- Notify_enigma2.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Notify_enigma2.md b/Notify_enigma2.md index 2eaf8af..d8c6a70 100644 --- a/Notify_enigma2.md +++ b/Notify_enigma2.md @@ -38,7 +38,8 @@ Valid syntaxes are as follows: Send an notification to our Enigma2 Device: ```bash # Assuming our {hostname} is dreambox -apprise enigma2://dreambox +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + enigma2://dreambox ``` ### 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. @@ -47,7 +48,8 @@ Some users may require special HTTP headers to be present when they post their d # X-Token: abcdefg # # Assuming our {hostname} is vu-device -apprise "enigma2://localhost/?-X-Token=abcdefg" +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + "enigma2://localhost/?-X-Token=abcdefg" # Multiple headers just require more entries defined with a hyphen in front: # Below would set the headers: @@ -55,5 +57,6 @@ apprise "enigma2://localhost/?-X-Token=abcdefg" # X-Apprise: is great # # Assuming our {hostname} is localhost -apprise "enigma2://localhost/path/?-X-Token=abcdefg&-X-Apprise=is%20great" +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + "enigma2://localhost/path/?-X-Token=abcdefg&-X-Apprise=is%20great" ``` \ No newline at end of file