From 0fb905e215f2c3290fa561a72bc2dad97665e793 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Mon, 3 Aug 2020 09:39:44 -0400 Subject: [PATCH] Updated Notify_discord (markdown) --- Notify_discord.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Notify_discord.md b/Notify_discord.md index e68d405..caa6168 100644 --- a/Notify_discord.md +++ b/Notify_discord.md @@ -47,12 +47,15 @@ Send a discord notification: ```bash # Assuming our {WebhookID} is 4174216298 # Assuming our {WebhookToken} is JHMHI8qBe7bk2ZwO5U711o3dV_js -apprise -t "Test Message Title" -b "Test Message Body" \ +apprise -vv -t "Test Message Title" -b "Test Message Body" \ discord://4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js ``` If you want to have your own custom avatar URL you're already hosting from another website, you could set the following: ```bash -apprise -t "Test Message Title" -b "Test Message Body" \ +# Assuming our {WebhookID} is 4174216298 +# Assuming our {WebhookToken} is JHMHI8qBe7bk2ZwO5U711o3dV_js +# Assuming our {AvatarURL} is https://i.imgur.com/FsEpmwg.jpeg +apprise -vv -t "Test Message Title" -b "Test Message Body" \ discord://4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js?avatar_url=https://i.imgur.com/FsEpmwg.jpeg ```