From 7233c7fb055957568937809ffffb8657801d50f5 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 17 Jun 2023 16:20:30 -0400 Subject: [PATCH] Updated Notify_guilded (markdown) --- Notify_guilded.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Notify_guilded.md b/Notify_guilded.md index 3e20f8b..a188b77 100644 --- a/Notify_guilded.md +++ b/Notify_guilded.md @@ -24,7 +24,7 @@ The last part of the URL you're given make up the 2 tokens you need to send noti Valid syntaxes are as follows: * `https://media.guilded.gg/webhooks/{WebhookID}/{WebhookToken}` * `guilded://{WebhookID}/{WebhookToken}/` -* `guilded://{user}@{WebhookID}/{WebhookToken}/` +* `guilded://{botname}@{WebhookID}/{WebhookToken}/` Guilded can also support a variety of website arguments, the below identifies the defaults and therefore do not need to be specified unless you want to override them: * `guilded://{WebhookID}/{WebhookToken}/?tts=No&avatar=Yes&footer=No&image=Yes` @@ -34,7 +34,7 @@ Guilded can also support a variety of website arguments, the below identifies th | ----------- | -------- | ----------- | WebhookID | Yes | The first part of 2 tokens provided to you after creating a *incoming-webhook* | WebhookToken| Yes | The second part of 2 tokens provided to you after creating a *incoming-webhook* -| user | No | Identify the name of the bot that should issue the message. If one isn't specified then the default is to just use your account (associated with the *incoming-webhook*). +| botname | No | Identify the name of the bot that should issue the message. If one isn't specified then the default is to just use your account (associated with the *incoming-webhook*). | tts | No | Enable Text-To-Speech (by default is is set to **No**) | footer | No | Include a message footer (by default is is set to **No**) | image | No | Include an image in-line with the message describing the notification type (by default is is set to **Yes**) @@ -48,7 +48,7 @@ Send a guilded notification: # Assuming our {WebhookID} is 4174216298 # Assuming our {WebhookToken} is JHMHI8qBe7bk2ZwO5U711o3dV_js apprise -vv -t "Test Message Title" -b "Test Message Body" \ - guilded://4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js + "guilded://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: @@ -57,5 +57,5 @@ If you want to have your own custom avatar URL you're already hosting from anoth # 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" \ - guilded://4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js?avatar_url=https://i.imgur.com/FsEpmwg.jpeg + "guilded://4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js?avatar_url=https://i.imgur.com/FsEpmwg.jpeg" ```