stefke Posted November 30, 2020 Report Posted November 30, 2020 const SteamUser = require('steam-user'); const SteamTotp = require('steam-totp'); const SteamCommunity = require('steamcommunity'); const TradeOfferManager = require('steam-tradeoffer-manager'); const SteamApiGetInterface = require('steam-web-api'); const config = require('./config'); const client = new SteamUser(); let community = new SteamCommunity(); const manager = new TradeOfferManager({ steam: client, community: community, language: 'en' }); const logInOptions = { accountName: config.accountName, password: config.password, }; client.logOn(logInOptions); client.on('loggedOn', () => { console.log("Ulogovan"); }); function hi() {community.getWebApiKey('http://localhost:3000/', (err, key) => {console.log(err)})}; setTimeout(hi, 10000); Quote
Dr. McKay Posted November 30, 2020 Report Posted November 30, 2020 It doesn't look like you ever passed cookies to your steamcommunity instance. You'd want something like this: client.on('webSession', (sessionID, cookies) => { community.setCookies(cookies); }); 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.