UnityHTTP icon indicating copy to clipboard operation
UnityHTTP copied to clipboard

REST API extension

Open vedi opened this issue 10 years ago • 1 comments

We've created our REST SDK on the shoulders of UnityHTTP. It provides API similar to https://github.com/mgonto/restangular, implements path building, error handling, and other useful things. You can find it here: https://github.com/vedi/restifizer-unity3d

For example it allows something like that:

 RestifizerManager.ResourceAt("api/users").
   WithBearerAuth().
   One(userId).
   Patch(parameters, (response) => {
     // response.Resource - at this point you can use the result 
   });

We'd appreciate if you mention it in your README, if it's possible.

vedi avatar Jan 28 '15 15:01 vedi

+1

cmisztur avatar Jun 29 '15 19:06 cmisztur