diff --git a/Notify_notica.md b/Notify_notica.md index 3d10a38..12ec687 100644 --- a/Notify_notica.md +++ b/Notify_notica.md @@ -49,7 +49,8 @@ Send a notica notification: ```bash # Assuming our {token} is abc123 -apprise notica://abc123 +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + notica://abc123 ``` ### 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 {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: # Below would set the headers: @@ -69,5 +71,6 @@ apprise "notica://localhost/abc123/?-X-Token=abcdefg" # # Assuming our {hostname} is localhost # 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" ``` \ No newline at end of file