koraktor / steam-condenser

A multi-language library for querying the Steam Community, Source, GoldSrc servers and Steam master servers
https://koraktor.de/steam-condenser
Other
356 stars 67 forks source link

The specified profile could not be found. #298

Closed joelamos closed 8 years ago

joelamos commented 8 years ago

I keep getting the above message, even when providing URLs to public profiles as below.

profileUrl = "https://steamcommunity.com/id/joelamos/"; long steamId64 = SteamId.create(profileUrl, true, false).getSteamId64();

koraktor commented 8 years ago

SteamId does not accept the full URLs. You'll have to use the custom URL part (or Steam ID):

long steamId64 = SteamId.create("joelamos", true, false).getSteamId64();