FusionAuth Java Client 
If you're integrating FusionAuth with a Java application, this library will speed up your development time.
For additional information and documentation on FusionAuth refer to https://fusionauth.io.
Example Usage
Build the Client
String apiKey = "5a826da2-1e3a-49df-85ba-cd88575e4e9d";
FusionAuthClient client = new FusionAuthClient(apiKey, "http://localhost:9011");Login a user
UUID applicationId = UUID.fromString("68364852-7a38-4e15-8c48-394eceafa601");
LoginRequest request = new LoginRequest(applicationId, "joe@fusionauth.io", null, "abc123");
ClientResponse<LoginResponse, Errors> result = client.login(request);
if (!result.wasSuccessful()) {
// Error
}
// Hooray! SuccessInstallation
Add the dependency via Maven:
<dependency>
<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-java-client</artifactId>
<version>1.46.0</version>
</dependency>Building
Building with Maven
$ mvn installBuilding with Savant
Note: This project uses the Savant build tool. To compile using Savant, follow these instructions:
mkdir ~/savant
cd ~/savant
wget http://savant.inversoft.org/org/savantbuild/savant-core/2.0.0-RC.6/savant-2.0.0-RC.6.tar.gz
tar xvfz savant-2.0.0-RC.6.tar.gz
ln -s ./savant-2.0.0-RC.6 current
export PATH=$PATH:~/savant/current/bin/Then, perform an integration build of the project by running:
$ sb intFor more information, checkout savantbuild.org.
Questions and support
If you have a question or support issue regarding this client library, we'd love to hear from you.
If you have a paid edition with support included, please open a ticket in your account portal. Learn more about paid editions here.
Otherwise, please post your question in the community forum.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/FusionAuth/fusionauth-java-client.
License
This code is available as open source under the terms of the Apache v2.0 License.