Skip to content

Instantly share code, notes, and snippets.

@AndreMor8
AndreMor8 / tweets.js
Last active June 1, 2023 03:10
Twitter notification to Discord
// .env -> process.env
require("dotenv").config();
// I will use axios as it comes with the next package as well.
const axios = require("axios");
// Our function for the bot to send a message
function createMessage(channelID, content) {
//You need the token from your Discord bot.
return axios.post(`https://discord.com/api/v8/channels/${channelID}/messages`, content, {
headers: {
Authorization: `Bot ${process.env.DISCORD_TOKEN}`,