diff --git a/Notify_discord.md b/Notify_discord.md index ccd3d97..6ff12fe 100644 --- a/Notify_discord.md +++ b/Notify_discord.md @@ -8,14 +8,14 @@ Creating a Discord account is easy. The only part that requires a little bit of extra work is once you've got a channel set up (by default discord puts you in a #General channel). Click on the Gear icon (Settings) and from here you need to enable webhooks. The webhook will end up looking something like this: -```https://discordapp.com/api/webhooks/417429632418316298/JHZ7lQml277CDHmQKMHI8qBe7bk2ZwO5UKjCiOAF7711o33MyqU344Qpgv7YTpadV_js``` +```https://discordapp.com/api/webhooks/4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js``` This effectively equates to: ```https://discordapp.com/api/webhooks/{WebhookID}/{WebhookToken}``` The last part of the URL you're given make up the 2 tokens you need to send notifications with It's very important to pay attention. In the above example the tokens are as follows: -1. **WebhookID** is ```417429632418316298``` -2. **WebhookToken** is ```JHZ7lQml277CDHmQKMHI8qBe7bk2ZwO5UKjCiOAF7711o33MyqU344Qpgv7YTpadV_js``` +1. **WebhookID** is ```4174216298``` +2. **WebhookToken** is ```JHMHI8qBe7bk2ZwO5U711o3dV_js``` ### Syntax Valid syntaxes are as follows: @@ -37,7 +37,7 @@ Valid syntaxes are as follows: #### Example Send a discord notification: ```bash -# Assuming our {WebhookID} is 417429632418316298 -# Assuming our {WebhookToken} is JHZ7lQml277CDHmQKMHI8qBe7bk2ZwO5UKjCiOAF7711o33MyqU344Qpgv7YTpadV_js -notify discord:///T1JJ3T3L2/A1BRTD4JD/JHZ7lQml277CDHmQKMHI8qBe7bk2ZwO5UKjCiOAF7711o33MyqU344Qpgv7YTpadV_js +# Assuming our {WebhookID} is 4174216298 +# Assuming our {WebhookToken} is JHMHI8qBe7bk2ZwO5U711o3dV_js +notify discord:///4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js ```