Jump to content
McKay Development

kaan

Member
  • Posts

    2
  • Joined

  • Last visited

Everything posted by kaan

  1. Hello, some methods give an error when you send a request directly to steam or sometimes the server ips is banned,. I am calling from TradeOfferManager.getUserInventoryContents In depend i look source it's calling from "node-steamcommunity". can we just give this function or proxy globally, like steamUser? Example; const client = new SteamUser( { machineIdType: SteamUser.EMachineIDType.PersistentRandom, httpProxy: `http://${ proxy }`, autoRelogin: false, picsCacheAll: true, webCompatibilityMode: true, protocol: SteamUser.EConnectionProtocol.WebSocket } ); Maybe while creating SteamCommunity or TradeOfferManager const community = new SteamCommunity( {} ); community.setCookies( cookies ); const manager = new TradeOfferManager( { steam: steamUser, community: community, domain: "127.0.0.1", language: 'en', useAccessToken: true, pollInterval: Math.floor( Math.random() * 1000 ) + 1000 } ); manager.setCookies( cookies );
  2. Hello, I have access token from web client. I want to convert it to steam desktop token. Web tokens has "client", "web" in aud. I can't login thru desktop app. Client tokens has "derive" and "renew" in aud. Which means i can login thru desktop app
×
×
  • Create New...