Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 691 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 691 Bytes

PokeGOAPI-Java

Pokemon GO Java API

Usage

Mostly everything is accessed through the PokemonGo class in the api package. The constructor of PokemonGo class requires a AuthInfo object which can be obtained from GoogleLogin().login method (or others in future).

EG:

AuthInfo auth = new GoogleLogin().login("token");           
PokemonGo go = new PokemonGo(auth);
System.out.println(go.getPlayerProfile());

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Credits

Grover-c13

zeladada