szustka124 Posted May 10, 2017 Report Posted May 10, 2017 HelloHow to get badge level another person, friend? Quote
SunriseM Posted May 11, 2017 Report Posted May 11, 2017 (edited) I don't remember of a method that does it, but you can use steam api getBadges Edited May 11, 2017 by SunriseM Quote
szustka124 Posted May 11, 2017 Author Report Posted May 11, 2017 ThanksProbably I will use get request, but can I use getGameBadgeLevel(gamId, callback) with steamid? Quote
SunriseM Posted May 11, 2017 Report Posted May 11, 2017 Documentation says: Gets your own Steam Level, and the level you have on a badge for a particular game. So i guess that you cant Quote
TomYoki Posted May 13, 2017 Report Posted May 13, 2017 ThanksProbably I will use get request, but can I use getGameBadgeLevel(gamId, callback) with steamid?You could use this modulehttps://github.com/DPr00f/steam-api-node player.GetSteamLevel(optionalSteamId).done(function(result){ console.log(result); }); player.GetPlayerLevelDetails(optionalSteamId).done(function(result){ console.log(result); }); player.GetBadges(optionalSteamId).done(function(result){ console.log(result); }); player.GetCommunityBadgeProgress(optionalBadgeId, optionalSteamId).done(function(result){ console.log(result); }); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.