Reputation: 11
I have to check an user's status: - Online - Offline - Playing [gamename / gameid]
How can I get the information I need through Steam Web API?
Upvotes: 0
Views: 6269
Reputation: 81
Response:
"players": [
{
"steamid": "...",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "...",
"lastlogoff": 1468736909,
"commentpermission": 1,
"profileurl": "http://steamcommunity.com/id/.../",
"avatar": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/...jpg",
"avatarmedium": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/..._medium.jpg",
"avatarfull": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/..._full.jpg",
"personastate": 1,
"primaryclanid": "...",
"timecreated": 1312034848,
"personastateflags": 0,
"gameextrainfo": "Counter-Strike: Global Offensive",
"gameid": "730",
"loccountrycode": "AU",
"locstatecode": "VIC",
"loccityid": 4990
}
]
personastate: 1 - Online;
gameextrainfo: Game;
gameid: GameID.
Upvotes: 3