Skip to content
Advertisement

DiscordAPIError[50035]: Invalid Form Body, errors: { embeds: [Object]

So I am trying to get the lyrics of a song (which works), but because of the 4096 characters limit on discord I have to cut it into different pieces. However, when I try to send all of the messages it gives me the error: DiscordAPIError[50035]: Invalid Form Body

This is the code that I am using:

JavaScript

It also gives me this error:

JavaScript

I tried changing the object to be like

JavaScript

But that would just say I cannot send an empty message. Any help is appreciated thanks!

Advertisement

Answer

At the top of your code, you have deferred the reply:

JavaScript

To reply to a deferred interaction, you should use the interaction#editReply method instead.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement