Skip to content

a8t3r/appannie-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Appannie java client

Java client for appannie rest api v1.2. Implemented over feign library

Supported methods:

  • Data APIs
  • Account Connection Sales
  • Product Details
  • Product Sales
  • Product Ranks
  • Product Features
  • Product Reviews
  • Product Ratings
  • User Advertising Sales
  • Meta Data API
  • Country List
  • Category List
  • Market List
  • Currency List
  • Device List
  • Feed List
  • Translate from code to production ID
  • Account APIs
  • Account Connections List
  • Account Connection Product List
  • Shared Products List

Examples

AppannieClient client = new AppannieClient("YOUR-TOKEN");
Accounts accounts = client.accounts();
int pageNum = 0;
AccountResponse accountList = accounts.accounts(pageNum);
Assert.assertNotNull(accountList);

Account account = accountList.accounts.iterator().next();
AccountProductResponse productList = accounts.accountProducts(account.accountId, pageNum);
Assert.assertNotNull(productList);

About

Appannie java client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages