Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 2.14 KB

README.md

File metadata and controls

40 lines (32 loc) · 2.14 KB

Badlands - Stormforge API Wrapper

Licence

Stars Badge Forks Badge Pull Requests Badge Issues Badge GitHub contributors

Usage

Initialising the BadlandsClient.

Using the BadlandsAuthentication builder.

BadlandsClient badlandsClient = new BadlandsClient(BadlandsAuthentication.builder().apiKey("API_KEY").secretKey("SECRET_KEY").build());

Not using the BadlandsAuthentication builder.

BadlandsClient badlandsClient = new BadlandsClient("API_KEY", "SECRET_KEY");

Requests

There is currently only one request you can make, however this will be increased after stability has been reached.

BadlandsClient#getCharacterSheet(String, Realm)#

Example Usage

A working example of the API can be found here.

Special Thanks

query-wow - Who's C# wrapper contained the ID's of all the special types included in Badlands.
Stormforge Development Team - Who helped debug many issues with their API throughout the development of Badlands.