1. 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...
     
    Last edited by a moderator: Jan 19, 2018
  2. Wulf

    Wulf Community Admin

    No, nothing has changed with it and what it uses hasn't changed in Unity/Mono for years.
     
  3. webrequest.Enqueue(); is the method you should be using.

    Code:
    webrequest.Enqueue(endpoint, "data=" + json, (code, response) => printResponse(response), this, Core.Libraries.RequestMethod.POST);
     
  4. Wulf

    Wulf Community Admin

    The previous one still works fine, but that would be the newer version. The old one is just deprecated (has been for the past few months), but not removed or changed. So if the OP is having an issue with a webrequest not working, simply switching to method the first one calls wouldn't really resolve it.