webrequest.Enqueue("http://*.*.*.*:8081/rust", "{\"event\": \"OnServerInitialized\",\"Initial\": true}", (code, response) => {
if (code != 200 || response == null) {
Puts("Server failed to respond!");
return;
};
}, this, RequestMethod.POST);Im using the above code (which is essentially the example) to test posting a json string to a nodejs app but it appears to send nothing in the body, i have tested with postman and it seems to work fine as the nodejs app receives the json so it would be nice if someone could explain what is going on