edit ephemeral message without access to interaction object
From my understanding ephemeral messages are editable via the interaction's token. So, the Discord api allows for this functionality... But there is currently no method for doing this via djs?
5 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!You can construct an InteractionWebhook to do so
This is the webhook used by the interaction object to do the edits normally
message.edit
attempts to use the regular message API, which will fail as its ephemeral🙏