Skip to content
Advertisement

Discord webhook returnes error when called from Forge mod

What I want is to send a file over a discord webhook using java code.

I created a perfectly working code using the knowledge I gained from this stackoverflow post about curl requests in java and this Discord webhooks guide about sending attachments.

The problem is, if I call the exact same code, that works perfectly from a standard java programm, from a forge 1.8.9 mod instead, it results in the following error:

JavaScript

Does anyone know how to solve this? And how can Discord even distinguish between the two?


The following is code contains the central method. LINE_FEED, addFormField and addFilePart are directly from the mentioned stackoverflow post and CHARSET = "UTF-8". channel_id and token are the custom values from the Discord webhook.

JavaScript

Advertisement

Answer

Got it! The question “how can Discord even distinguish between the two” gave me the idea to set the user-agent to a fixed value – and solved the problem.

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