Send a message to discord using webhook

Script discord Verified

by lplit ยท 7/30/2022

The script

Submitted by lplit Deno
Verified 375 days ago
1
import discordwebhook from "https://deno.land/x/discordwebhook/mod.ts";
2

3
type DiscordWebhook = {
4
  webhook_url: string;
5
};
6
export async function main(discord_webhook: DiscordWebhook, message: string) {
7
  const webhook = new discordwebhook(discord_webhook.webhook_url);
8
  const ret = await webhook.createMessage(message);
9
  return ret;
10
}
11

Other submissions
  • Submitted by joshuarussell.online513 Bun
    Created 326 days ago
    1
    import discordwebhook from "https://deno.land/x/discordwebhook/mod.ts";
    2
    
    
    3
    type DiscordWebhook = {
    4
      webhook_url: string;
    5
    };
    6
    
    
    7
    export async function main(discord_webhook: DiscordWebhook, message: string) {
    8
      // Normalize legacy Discord webhook URLs to the current domain
    9
      const normalized_url = discord_webhook.webhook_url.replace("discordapp.com", "discord.com");
    10
    
    
    11
      const webhook = new discordwebhook(normalized_url);
    12
      const ret = await webhook.createMessage(message);
    13
      return ret;
    14
    }
    15