Jump to content
McKay Development

mariodelta

Member
  • Posts

    9
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

mariodelta's Achievements

  1. Hello! When I try to set the cookies for the Steam Trade manager I get the following error TypeError: cookies.find is not a function This is my code client.on('webSession', function(cookies) { manager.setCookies(cookies, (err) => { if(err) { console.log(err) return } console.log('cookies set!'); }) });
  2. Already found out that my account is limited and this error is related to that. Need to deposit 5 dollars in order to create an API key. What's the best solution for adding the funds to my account with 2FA enabled?
  3. Hello! Currently, I'm trying to create a new Steam Web API Key with the steam-community package. When I try to execute the code below community.login(loginOptions, (err) => { community.createWebApiKey({ domain: 'localhost' }, function(err, result) { console.log(err, result); }) }); I will receive an Undefined Error Error: Error undefined at exports.eresultError (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/steamcommunity/components/helpers.js:57:12) at SteamCommunity.<anonymous> (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/steamcommunity/components/webapi.js:147:22) at Request._callback (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/steamcommunity/components/http.js:67:15) at self.callback (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/request/request.js:185:22) at Request.emit (node:events:520:28) at Request.<anonymous> (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/request/request.js:1154:10) at Request.emit (node:events:520:28) at Gunzip.<anonymous> (/Users/dkuijs/Documents/Steam Trading Bot/steam-trading-bot/node_modules/request/request.js:1076:12) at Object.onceWrapper (node:events:634:28) at Gunzip.emit (node:events:520:28) { eresult: undefined } undefined Does someone know what the error could be?
  4. Hello, I have a working connection with my Steam (Bot) account and enabled 2FA two weeks ago manually via the Steam App. Currently, I'm trying to implement the steam-totp package and according to the documentation I need to use client.enableTwoFactor() in order to receive a Response object which needs to be saved. Unfortunately, I'm receiving the status code 29 instead of 1 which means DuplicateRequest. Does it mean that I need to remove the 2FA from the app and enable it via the NPM package?
  5. Anyone an idea? Problem is unfortunately still not resolved yet.
  6. The whole profile is set to public. Do you need to deposit $5 dollars before you can interact with the API or something?
  7. This is my code: const TradeOfferManager = require('steam-tradeoffer-manager'); const SteamUser = require('steam-user'); let client = new SteamUser(); let loginOptions = { accountName: process.env.STEAM_USERNAME, password: process.env.STEAM_PASSWORD, } client.logOn(loginOptions); client.on('loggedOn', function() { console.log('[BOT] Logged into Steam Account ' + client.steamID.getSteam3RenderedID()); client.setPersona(SteamUser.EPersonaState.Online); });
  8. Hello, I'm trying to setup a Steam Bot. After successful logging in I change the PersonaState to Online with client.setPersona(SteamUser.EPersonaState.Online); Unfortunately, the Steam Profile is still offline without any errors in the console. Can someone explain to me what's going wrong at this point?
×
×
  • Create New...