View on GitHub

Backlog4j

Java library for Backlog API version 2

Download this project as a .zip file Download this project as a tar.gz file

Backlog4j

Backlog4j is a Backlog binding library for Java.

Backlog icon

Nulab developer icon

How to install

gradle

'com.nulab-inc:backlog4j:2.0.0'

maven

<dependency>
  <groupId>com.nulab-inc</groupId>
  <artifactId>backlog4j</artifactId>
  <version>2.0.0</version>
</dependency>

How to use

Get the BacklogClient with your space id and your api key.

BacklogConfigure configure = new BacklogDefaultConfigure("yourSpaceId").apiKey("yourApiKey");

BacklogClient backlog = new BacklogClientFactory(configure).newClient();

Then call Backlog API method. Enjoy Backlog API!

Project project = backlog.getProject("PROJECT-KEY");

Documents

License

MIT License