steam

How to get the price of an app in Steam WebAPI?

落爺英雄遲暮 提交于 2019-12-02 14:56:55
Is there a possibility to get the price of a game from Steam over the WebAPI? In current days, we have an API call. This means we could use JSON for it: Appid 57690 = Tropico 4 http://store.steampowered.com/api/appdetails?appids=57690 Part of the response: "price_overview":{ "currency":"EUR", "initial":2999, "final":2999, "discount_percent":0 } The Price is looking like you should convert 2999 to 29.99 Full response: { "57690":{ "success":true, "data":{ "type":"game", "name":"Tropico 4: Steam Special Edition", "steam_appid":"57690", "required_age":0, "dlc":[ "205630", "205636", "205635",

Batch file - Discovered program path (variable) - Run program from discovered reg value (path)

让人想犯罪 __ 提交于 2019-12-02 04:50:55
问题 I'm trying to create a batch file that will discovered the location of a EXE in this case Steam, and runs that EXE with the discovered path from the registry. The reason I want to discover the install path via the registry is because this batch file is to run over multiple machines and the Steam install paths could be different. The registry is the constant that holds these paths. Now I believe Steam stores it's install path at: "HKEY_CURRENT_USER\Software\Valve\Steam\" SteamExe = X:\Path

Batch file - Discovered program path (variable) - Run program from discovered reg value (path)

允我心安 提交于 2019-12-02 01:22:13
I'm trying to create a batch file that will discovered the location of a EXE in this case Steam, and runs that EXE with the discovered path from the registry. The reason I want to discover the install path via the registry is because this batch file is to run over multiple machines and the Steam install paths could be different. The registry is the constant that holds these paths. Now I believe Steam stores it's install path at: "HKEY_CURRENT_USER\Software\Valve\Steam\" SteamExe = X:\Path\Steam.exe So first I need to know how to grab this value and then I would like to know how to take that

Steam API Get SteamID using Javascript

我们两清 提交于 2019-12-01 20:26:28
问题 Been running into what appears to be the Same Origin Policy which is causing quite some headache! To cut to the chase, I am essentially trying to acquire a user's steam64id when only supplied their username. For example, my username: "Emperor_Jordan" I would go to: http://steamcommunity.com/id/emperor_jordan?xml=1 And the steamid I need is right at the top. So I figured I would use JQuery Ajax to acquire this and parse out the id I need for later usage (steamapi usage requires the steam64id)

Steam API Get SteamID using Javascript

自闭症网瘾萝莉.ら 提交于 2019-12-01 18:36:04
Been running into what appears to be the Same Origin Policy which is causing quite some headache! To cut to the chase, I am essentially trying to acquire a user's steam64id when only supplied their username. For example, my username: "Emperor_Jordan" I would go to: http://steamcommunity.com/id/emperor_jordan?xml=1 And the steamid I need is right at the top. So I figured I would use JQuery Ajax to acquire this and parse out the id I need for later usage (steamapi usage requires the steam64id) as follows. Here is a snippet of the code in question: $.ajax({ url: "http://steamcommunity.com/id

How to implement Steam Auth with Firebase?

跟風遠走 提交于 2019-12-01 14:26:17
问题 All I found was this old answer: https://groups.google.com/forum/#!topic/firebase-talk/rApG8QQd6t4 Does a fellow SOer know any information or could a Firebase engineer provide a more detailed answer? I am currently trying to authenticate the user with Steam using this library: https://github.com/liamcurry/passport-steam and then use Firebase custom tokens to get the user in my Firebase auth system. I don't know if this is the right approach. Regardless, I am stuck. EDIT: Here is my current

How to retrieve steam market price history?

我的未来我决定 提交于 2019-12-01 12:21:37
I'm trying to get price history for items on steam market. I found a link that returns price history for a specific item (which is mentioned in almost every question about getting price history from market at this site). http://steamcommunity.com/market/pricehistory/?country=PT&currency=3&appid=730&market_hash_name=Falchion%20Case It works fine in browser while I'm logged-in in Steam, but when I try to do the same thing in python, it returns an empty list (the same thing happens when I try to do it in browser while not being logged-in in Steam). This is my python code (uses requests lib):

MongoDB find in collection with unknown key

谁说我不能喝 提交于 2019-12-01 07:28:09
问题 I need help with query to mongodb, here my json, I need to find all items with "name_color": "8650AC", I can find one db.items.find( { "rgDescriptions.230130277_253072421.name_color": "8650AC" } ) but don't know how to find all, because whey have different keys. How to do that? { "success": true, "rgCurrency": [], "rgDescriptions": { "230130277_253072421": { "appid": "570", "classid": "230130277", "instanceid": "253072421", "icon_url": "Fq3N3-CjKwAJlvOA

How get a response of multiple price items on the market

五迷三道 提交于 2019-12-01 02:02:01
I check the price of each items of my backpack cs:go with this link : http://steamcommunity.com/market/priceoverview/?country=FR&currency=3&appid=440&market_hash_name= But for 100 items for exemple, i check 100 links for get the price of all my items. Is it possible to query steam with many items and steam response only one json with all prices requested? I want it's a system like that, you send a array with all classid of the items you want know the price to a steam url and steam send you one json with all price of your array. For steam it's not difficult and it's very speedy and for me it's

XML Parser Error Start Tag Expected

给你一囗甜甜゛ 提交于 2019-11-30 09:19:48
问题 function retrieveProfile() { $url = "http://steamcommunity.com/profiles/{$this->steamID64}/?xml=1"; $profileData = simplexml_load_string($url); if(!empty($profileData->error)) { return NULL; } $this->friendlyName = (string) $profileData->steamID; } Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : Start tag expected, '<' not found Warning: simplexml_load_string() [function.simplexml-load-string]: http://steamcommunity.com/profiles