https://github.com/robinpowered/robin-java-sdk
Official Robin Java SDK
https://github.com/robinpowered/robin-java-sdk
Last synced: about 1 year ago
JSON representation
Official Robin Java SDK
- Host: GitHub
- URL: https://github.com/robinpowered/robin-java-sdk
- Owner: robinpowered
- License: apache-2.0
- Created: 2013-02-13T17:04:43.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2018-08-27T21:19:48.000Z (almost 8 years ago)
- Last Synced: 2025-03-24T04:43:39.953Z (about 1 year ago)
- Language: Java
- Homepage: https://docs.robinpowered.com
- Size: 2.69 MB
- Stars: 4
- Watchers: 9
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Robin Java SDK
[](https://travis-ci.org/robinpowered/robin-java-sdk)
This README is a work in progress.
Full API documentation is available at [docs.robinpowered.com](http://docs.robinpowered.com).
[View the Javadoc](http://robinpowered.github.io/robin-java-sdk/javadoc)
## Download
Using Maven:
```xml
com.robinpowered
robin-java-sdk
1.0.0
```
or using Gradle:
```groovy
compile 'com.robinpowered:robin-java-sdk:1.0.0'
```
## Compile locally
```
mvn clean package
```
Locally compiled .jar file will be placed in the `target` directory.
## Snapshots
Snapshots are available from the
[sonatype `snapshots` repository](https://oss.sonatype.org/content/repositories/snapshots/)
The jar is available for direct download [here](https://oss.sonatype.org/content/repositories/snapshots/com/robinpowered/robin-java-sdk/).
## Getting Started
Using the Robin API requires an API access token, which can be generated by logging in a https://dashboard.robinpowered.com.
Once you have an access token, you can instantiate the `RobinApi` class to easily make API calls:
```java
Credential credential = new AccessTokenCredential("my token");
RobinApi apiClient = new RobinApi(credential);
ApiResponse> presence = apiClient.getService(PlacesService.class).getPresence(mySpaceId).getData();
```
## License
Copyright 2015 Robin Powered, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.