
spock
Member-
Posts
36 -
Joined
-
Last visited
spock's Achievements
-
Walterlyday reacted to a post in a topic: Steam Community Not logged in Error
-
name_exact:"1" seems to be working now.
-
Trying to get get exact search when searching sales... opskins.search({app:'730_2', search_item:'operation hydra case'}, function(err, sales){ if(err){ }else{ var itemToBuy = {saleid: [sales[0].id], total: sales[0].amount}; } });will yield me only hydra case keys... when I try adding name_exact:"1" I do not get any cases. Is there a way to get this to search and return only operation hydra cases?
-
spock started following Getting the item rarity type or tags , search exact name not working , Advantages of real time trade vs steam trade offer? and 2 others
-
Advantages of real time trade vs steam trade offer?
spock replied to spock's topic in node-steam-tradeoffer-manager
Thanks for the link but what exactly are the advantages vs disadvantages vs each? -
You could pay and use csgoanalyst api. Another more affordable option -- http://csgo.steamlytics.xyz/ (i'm not affiliated with any of these, just suggesting) You could also use opskins api that has reliable pricing data - which is free (check out their npm sdk). The other way is parsing the steam market data and getting the sale price but i would recommend one of the above options.
-
I'm using steam-totp to automate logging in like so... and it's prompting me for a steam guard code: user.logOn({ accountName: 'user', password: 'pass', twoFactorCode: SteamTotp.generateAuthCode(this.shared_secret) });I first used user.createAccount()Then I used user.enableTwoFactor() and saved the response from calling enable two factor. { shared_secret: '***', serial_number: '***', revocation_code: '***', uri: '***', server_time: '***', account_name: 'user', token_gid: '***', identity_secret: '***', secret_1: '***=', status: 1 } I then finalized my two factor user.finalizeTwoFactor(shared_secret, smsCode) After this I logged into the steam mobile app - it prompted me for a steamguard code... so i clicked send SMS code to use this device and when I entered the code it allowed me to log into the steam mobile... I have a feeling that this overrode my enableTwoFactor details I saved earlier... Can anybody comment on this?
-
You're right, there isn't. However I was able to find all the data I need with this node module. https://www.npmjs.com/package/node-csgo-parser#CSGODataParser You can grab all the weapons and rarity data from your game files and save them to a db that way. Very handy.
-
Only way I know how to is to call the https://steamcommunity.com/market/listings/730/AK-47%20%7C%20Redline%20%28Field-Tested%29 for example and grab the rarity type there. Is there an api i'm missing somewhere to get this?
-
Without having to make a call to either steam inventory or get user inventory as the docs say to get a CEItem... is there another realible way to find the rarity type of an item either by calling steam? Or will I need to resort to come kind of community market scrapping to find the rarity type I want for an item not in a steam inventory. Thanks
-
Thank you McKay. Cheers.
-
Error: Not Logged In at SteamCommunity.<anonymous> (/node_modules/steam-tradeoffer-manager/lib/classes/TradeOffer.js:486:25) at Request._callback (/node_modules/steamcommunity/components/http.js:67:15) I'm passing a steam community object into my trade offer manager like so var myCommunity = new SteamCommunity(); var client = new SteamUser(); var offerMananger = new TradeOfferManager({ steam: client, language: "en", cancelTime: 300000, community: myCommunity });Sometimes, for whatever reason, as have been stated before, my community session will timeout, expire or just logout when I attempt a trade. I get the Not logged in error. Is there a simple way to check if myCommunity is logged out once it's attached to an offerManager? Or can I just check the loggedIn method on the myCommunity object? Do I need to reset cookies when I do this? Do I need to recreate my offerManager to set cookies? What's the recommended way?