Skip to content

Instantly share code, notes, and snippets.

@jcbombardelli
Created August 24, 2023 14:28
Show Gist options
  • Save jcbombardelli/c27ec70774881d3810fce952a9f19263 to your computer and use it in GitHub Desktop.
Save jcbombardelli/c27ec70774881d3810fce952a9f19263 to your computer and use it in GitHub Desktop.
Slack Send Message
const { WebClient } = require('@slack/web-api');
const SLACK_BOT_TOKEN = ''
const SLACK_CHANNEL_ID = ''
const main = async () => {
const client = new WebClient(SLACK_BOT_TOKEN);
await client.chat.postMessage({
channel: SLACK_CHANNEL_ID,
text: 'Bot ! 🤖'
});
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment