szustka124 Posted May 10, 2017 Report Share Posted May 10, 2017 HelloHow to get badge level another person, friend? Quote Link to comment Share on other sites More sharing options...
SunriseM Posted May 11, 2017 Report Share 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 Link to comment Share on other sites More sharing options...
szustka124 Posted May 11, 2017 Author Report Share Posted May 11, 2017 ThanksProbably I will use get request, but can I use getGameBadgeLevel(gamId, callback) with steamid? Quote Link to comment Share on other sites More sharing options...
SunriseM Posted May 11, 2017 Report Share 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 Link to comment Share on other sites More sharing options...
TomYoki Posted May 13, 2017 Report Share 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 Link to comment Share on other sites More sharing options...
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.