CloudPlugs REST Client for Java is a library to perform HTTP requests to CloudPlugs servers. The official repository is https://github.com/cloudplugs/rest-java
CloudPlugs is a cloud based IoT platform to enable the fast prototyping, connection, deployment and management of smart "Things" (sensors, smartphones, home appliances, etc.). Different objects can interact with each other by publishing and/or reading data on shared channels through simple communication protocols. You can learn more at http://www.cloudplugs.com/how-it-works/ , and you can sign-up on http://www.cloudplugs.com/register to start connecting your Things.
Just put the library source files in your Java project and you are done.
You need the the packages (and subpackages of) com.cloudplugs and org.json.
Import the main Clouplugs REST Client classes:
Create a new instance of the com.cloudplugs.rest.RestClient class:
Now you could configure the client instance with the right authentication credentials for obtaining a new com.cloudplugs.rest.RestManager instance:
Finally you are ready to perform REST requests to the server!
However it's not necessary the to setup all the options before calling restClient.getManager(opts)
, you could obtain the com.cloudplugs.rest.RestManager before setting any option. See com.cloudplugs.rest.Opts for further details about the available options to configure.
After you get a configured instance of com.cloudplugs.rest.RestManager, you can execute HTTP requests to the CloudPlugs server by invoking any of the request methods. For easy understanding, such methods of com.cloudplugs.rest.RestManager have names prefixed with exec
. All the requests are asynchronous and are performed according to the CloudPlugs REST API documentation. Example:
where restCallback
is an instance of com.cloudplugs.rest.RestCallback will receive the response.