|
|
@ -22,7 +22,7 @@ public class SteamWebApi { |
|
|
|
restTemplate = new RestTemplate(); |
|
|
|
} |
|
|
|
|
|
|
|
public SteamData getSteamData(long steam64){ |
|
|
|
public SteamData getSteamData(String steam64){ |
|
|
|
String url = String.format("https://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=%s&steamids=%s", webapi_key, steam64); |
|
|
|
try { |
|
|
|
ResponseEntity<String> response = restTemplate.getForEntity(url, String.class); |
|
|
|