egoengineering
DIAdiscord.js - Imagine an app
•Created by egoengineering on 3/2/2025 in #djs-questions
Replying to APPLICATION_AUTHORIZED event on a webhook
I've built a small next.js-based application solely for the purpose of sending welcome messages when my bot is added to a user or channel. I have webhook properly registered and tested. However I fail to send the message itself. My part that sends message:
res.send({
status: 200,
type: InteractionResponseType.CHANNEL_MESSAGE_WITH_SOURCE,
data: {
content: "its working!",
embeds: [],
allowed_mentions: { parse: [] },
},
});
What am i missing here?6 replies
DIAdiscord.js - Imagine an app
•Created by egoengineering on 2/16/2025 in #djs-questions
Sending a welcome DM to users that have added/authorized my bot
Finding a bot in Discord interface could be a bit challenging. Is there a way to send a welcome DM to user's who just added/authorized my bot?
23 replies