Is is possible that the latest Oxide breaks webrequest.EnqueuePost ?
I got several servers and it doesn't seem to do this anymore (Plugin StatLogger). One of the servers is not updated to the latest and there it still works...
Webrequest.EnqueuePost changed?
Discussion in 'Rust Discussion' started by Riddle, Jan 19, 2018.
-
Wulf Community Admin
No, nothing has changed with it and what it uses hasn't changed in Unity/Mono for years.
-
webrequest.Enqueue(); is the method you should be using.
Code:webrequest.Enqueue(endpoint, "data=" + json, (code, response) => printResponse(response), this, Core.Libraries.RequestMethod.POST);
-
Wulf Community Admin