Jump to content
McKay Development

Need help


stefke

Recommended Posts

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);
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...