https://github.com/born2snipe/gamejolt-api
Java API for interacting with Game Jolt
https://github.com/born2snipe/gamejolt-api
Last synced: about 1 year ago
JSON representation
Java API for interacting with Game Jolt
- Host: GitHub
- URL: https://github.com/born2snipe/gamejolt-api
- Owner: born2snipe
- License: other
- Created: 2010-02-07T17:26:47.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2015-02-14T03:03:56.000Z (over 11 years ago)
- Last Synced: 2025-02-17T12:45:33.896Z (over 1 year ago)
- Language: Java
- Homepage: http://gamejolt.com
- Size: 379 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# GameJolt API [](https://travis-ci.org/born2snipe/gamejolt-api)
## Current Features
- access to available trophies (earned/unearned)
- access to achieve a trophy
- access to highscores
- access to achieve user highscores
- supports gzip & deflate compression
- supports custom serialization of user/game data
- access to save/read/remove data for users or your game
- trophy achievement management
## Example Usage
int gameId = 1111;
String privateKey = "your personal privatekey given to you by game jolt";
String playerUsername = "player";
String playerHash = "playerHash";
GameJolt gj = new GameJolt(gameId, privateKey);
if (gj.verifyUser(playerUsername, playerHash))) {
List trophies = gj.getAllTrophies();
}
## Coming soon...
- quickplay support
- guest player highscores