genability-java
is the official Genability maintained Java client library for the Genability APIs.
- There is a Getting Started Guide thats a good place to start.
- You can see the Javadocs here.
The Genability API Java client library is now available on the Maven Central Repository! Hosted on Sonatype's OSSH, you can now use the library with a couple of lines of XML. Just add the following to pom.xml
in your Maven-enabled project:
<dependency>
<groupId>com.genability</groupId>
<artifactId>genability-client</artifactId>
<version>1.16.0</version>
</dependency>
You'll still need an appId and appKey to make any requests. Get an appId at https://dash.genability.com/org/applications or sign up if you are new to Genability.
Be sure to check out the tutorial and the tutorial app for some examples to get you started.
- Get a Genability appId and appKey.
- Copy the
src/test/resources/genability.properties
file into a newsrc/test/resources/genability.local.properties
. This copy is gitignored. - Fill in your appId and appKey into the
.local.properties
. - Run
mvn test
: compiles the library and runs JUnit tests. - Develop your own app. Read the API documentation at http://developer.genability.com.