Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codeaholicguy/steam4j
Steam4j is a Steam API binding library for the Java language.
https://github.com/codeaholicguy/steam4j
Last synced: about 1 month ago
JSON representation
Steam4j is a Steam API binding library for the Java language.
- Host: GitHub
- URL: https://github.com/codeaholicguy/steam4j
- Owner: codeaholicguy
- Created: 2015-05-28T03:11:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-03T04:10:01.000Z (over 9 years ago)
- Last Synced: 2024-04-23T23:17:33.235Z (7 months ago)
- Language: Java
- Homepage:
- Size: 172 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Steam4j
Steam4j is a Steam API binding library for the Java language.## Version
1.0## Code Examples
### Getting Steam Client
At first it is necessary to acquire Steam Client to use steam4j.
Api key can be generated http://steamcommunity.com/dev/apikey.```java
String apiKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";SteamConfiguration configuration = new SteamConfiguration(apiKey);
SteamClient steamClient = SteamFactory.getInstance(configuration).getClient();
```