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 year 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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-03T04:10:01.000Z (over 10 years ago)
- Last Synced: 2025-01-26T16:44:12.756Z (about 1 year 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();
```