steam-web-api
Steam API all games
There is no “Steam API all games and all their details in one go”. You use GetAppList to get all the steam apps. Then you have to query each app with appdetails which will take a long time. GetAppList : http://api.steampowered.com/ISteamApps/GetAppList/v0002/?format=json { “applist”: { “apps”: [ {“appid”: 10, “name”: “Counter-Strike”}, {“appid”: 20, “name”: “Team Fortress … Read more
Incorrect Integer (2147483647) is inserted into MySQL?
2147483647 is the largest int value for mysql. Just change the type from int to bigint.