Yashasvi Dwivedi
Yashasvi Dwivedi
Sorry for bumping an old issue, but I had been using this on chrome and have recently moved to waterfox (fork of firefox) and would really love to have this!
Download SDA, Steam Desktop Auth, Log your account into it and don't set up encryption, browse the folder in which you have installed SDA and look for a folder name...
@kebaburmum Try `manager.getInventoryContents`, check it out on the [wiki](https://github.com/DoctorMcKay/node-steam-tradeoffer-manager/wiki/TradeOfferManager#getinventorycontentsappid-contextid-tradableonly-callback)
@kebaburmum Specify `rememberPassword: true` in your `logOnOptions` ```js const logOnOptions = { accountName: config.login.username, password : config.login.password, twoFactorCode: SteamTotp.generateAuthCode(config.login.shared_secret), rememberPassword: true } ```
@kebaburmum Refer to [this](https://github.com/Steam-Bot-Basics/node-steam-guide/blob/master/Chapter%203%20-%20User%20Interaction/Chapter%203.2%20-%20Chatting%20With%20Friends/README.md) to understand chat messages and commands. Read the API docs and think of how you can achieve what you want.
It looks like your missing the `cookie-parser` module, try using `npm install cookie-parser`
This can also be used to get price info directly from steam without any restrictions : `http://steamcommunity.com/market/priceoverview/?appid=730&market_hash_name={market_hash_name}` Result for M4A1-S | Decimator (Field-Tested) would be : `{"success":true,"lowest_price":"$5.44","volume":"468","median_price":"$5.54"}`
Are you sure you have provided the part of the code which errors? Cause I can't see any if conditions in ur provided code, also you haven't defined `details`, that...
Refer to [Chapter 3.2](https://github.com/Steam-Bot-Basics/node-steam-guide/blob/master/Chapter%203%20-%20User%20Interaction/Chapter%203.2%20-%20Chatting%20With%20Friends/README.md) in Steam-Bot-Basics/node-steam-guide, it's a fork of this repo and has been updated recently.