- Clone the repository.
- Save the WebAPIWrapper.java class into your project directory
- Create a new class and call the WebAPIWrapper class as an Object
WebAPIWrapper uapi = new WebAPIWrapper("//API KEY HERE");
//call the any utopia API method using uapi.method_here("parameters");
Example's:
uapi.getSystemInfo();
uapi.setProfileStatus("available", "happy");
Optional Parameters Keep parameters you dont want to include as --> null
Note:
The wrapper class is an example class of how you would access the API.
The WebAPIWrapper class contains the API wrapper.