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?
15 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!ideally if you really need users to know something beforehand, that should be in your app's description
that being said, discord doesn't notify through the gateway (what djs uses to receive events) when an app is installed
that's an event that's only emitted through webhook events
which is outside the scope of djs
specifically that
I do have a description on how to interact with the bot, but many users from my test groups independently complained that they didn't know what to do when the bot added. And since the bot is interacted with via DMs, it is kind of important that users could easily find an authorized bod somewhere easily. This is a bit of a general Discord usability issue, in my opinion.
Anyway, thank you for pointing me out to the webhooks. This might be THE solution 🙂
Ah, nevermind. Just read the docs and turns out that specifying a webhook would mean the Gateway sockeck connection would stop working. This means I'd have to entirely redo my app from scratch, which negates the advantage of using the Discord.js...
No it wouldn't stop working, only for interaction endpoint (and possibly EntitlementCreat?, im not sure about this one) do you get interactionCreate over the http instead of gateway. ApplicationAuthorized and guildCreate is essentially two different event, you'll get both if you are subscribed to it
My bot is forcced primarily on interactions, im afraid: slash commands, butto clicks etc. This means i'd have to redo 2/3rds of an app
Yeah so do not enable http interactions. And that is also separate to webhook events, you only get what you subscribe to on the dev portal. You can easily enable ApplicationAuthorized event without affecting others
Maybe consider searching thru audit logs in
guildCreate
event? To be specific, look for AuditLogEvent.BotAdd
there is no guild in a user app
user app, question is about a bot? so i'm guessing it was about guilds too?
a user app isnt a bot
user apps are installed on users
not on guilds
yeah, exactly, author asked about a bot in their title and description, not a user app
what?
they were helped regardless