Jump to content
McKay Development

evancauwenberg

Member
  • Posts

    4
  • Joined

  • Last visited

evancauwenberg's Achievements

  1. After some googling i have found a link that says the API server is down, will follow the up! https://steamgaug.es/ Edit: have tried several times today, still the same error
  2. Sorry dr. McKay .. i was on holiday i had an oler version derp i'm receiving the following error now: sendError: There was an error sending your trade offer. Please try again later. (26) Thnx in advance!
  3. Hi there At first thnx for the awesome wrapper around the steam trade offers! I have encountered an issue with creating tradeoffers, accepting works like a charm! When i try to create and offer, add items to it and send, i don't receive any feedback err and status are undefined. If i log the tradeoffer all is set, what am i missing? Thnx in advance! steam.login(logOnOptions, function(err, sessionID, cookies, steamguard) { if (err) { console.log("Steam login fail: " + err.message); process.exit(1); } fs.writeFile('steamguard.txt', steamguard); console.log("Logged into Steam"); manager.setCookies(cookies, function(err) { if (err) { console.log(err); process.exit(1); // Fatal error since we couldn't get our API key return; } console.log("Got API key: " + manager.apiKey); // var inventory = manager.loadUserInventory("*****", 730, 2); // console.log(inventory); var offer = manager.createOffer("****"); offer.addMyItem({"appid": 730, "contextid": 2, "assetid": "6582251698"}); offer.send(function(err, status) { if (err) { console.log("send" + err); } else { console.log("Offer #" + offer.id + " " + status); } console.log(status); console.log('hierheirieirh'); }); }); console.log('testtest'); // Checks and accepts confirmations every 30 seconds steam.startConfirmationChecker(30000, config.identity_secret); });
×
×
  • Create New...