Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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();
```