QuestionRealQuick1 Posted April 17, 2018 Report Posted April 17, 2018 how would i go about loading somebodies inventory without being logged into an account?is that even possible? Quote
Dr. McKay Posted April 18, 2018 Report Posted April 18, 2018 You should be able to just call it without logging in. Quote
Ryzl Posted April 24, 2018 Report Posted April 24, 2018 const SteamCommunity = require('steamcommunity'); let community = new SteamCommunity(); const userID = ""; //user SteamID which inventory you looking for const appid = "730"; //csgo const contextid = "2"; // number of inventory? community.getUserInventoryContents(userID, appid, contextid, false, function(err, inventory){ if(err){ console.log(err); } else { console.log(inventory); } }); Hi, This is only what u need i think, for me is working my first post here so be forgiving if i did something wrong regards 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.