What are the exact differences between a Webhook and a Webhook client?
I've read the page on the discordjs.guide but I'm not sure I really understood the difference between the two.
discord.js Guide
Imagine a guide... that explores the many possibilities for your discord.js bot.
3 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!
- ✅
Marked as resolved by OPYou create a new client with
WebhookClient
in your code. But discord.js creates Webhook
and gives it to you, eg when using <Guild>.fetchWebhooks()
This is the answer I was lookin for. Thank you kindly ❤️