maven version is same with nps release .
- add maven repo
<dependency>
<groupId>io.github.freshgeek</groupId>
<artifactId>nps-java-sdk</artifactId>
<version>0.26.10-SNAPSHOT</version>
</dependency>
- add your config & execute :
class Example {
@Test
public void execute() {
ClientListForm listForm = new ClientListForm(0, 10, null, "desc");
// for example:
// test
// http://8.219.160.234:8080
Config config = new Config("your key", "your server base url ");
System.out.println(listForm.submit(config));
}
}