Questions tagged [steam-web-api]

The Steam Web API is a set of data services for obtaining information related to Valve Software's Steam platform.

The Steam Web API is a set of data services for obtaining information related to Valve Software's Steam platform.
Queryable information includes player, game item, news and other related content.

To use most of the Web-APIs, you will need an API key, provided by Valve.

531 questions
0
votes
1 answer

Jquery JSON call: Uncaught SyntaxError: Unexpected token :

I want my site to be able to retrieve steam item prices like below: http://steamcommunity.com/market/priceoverview/?currency=3&appid=730&market_hash_name=Operation%20Phoenix%20Weapon%20Case Right now i have this code: $.ajax({ type : "Get", …
user4122038
0
votes
0 answers

Steam Web API GetPlayerItems

How can I use the results of this query: http://api.steampowered.com/IEconItems_730/GetPlayerItems/v0001/?key=KEY&SteamID=64ID to understand the attributes of individual weapons in CS:GO.? The values I get for a players inventory look like this: …
Frames Janco
  • 23
  • 1
  • 6
0
votes
2 answers

jQuery $.getJSON throws Unexpected Token

I'm a JavaScript beginner. I want to retrieve some data from Steam Market using the following URL: https://steamcommunity.com/market/priceoverview/?country=PL¤cy=3&appid=730&callback=?&market_hash_name=Operation%20Vanguard%20Weapon%20Case# I…
Kartm
  • 39
  • 1
  • 11
0
votes
1 answer

Steam Bot: Printing out items that are traded

I am making a steam trade bot and I need to know what items get traded to me so I can store them into a database. The bot is using node-steam and node-steam-tradeoffers. The bot is currently operational and successfully makes trades. on a succeful…
Brian Bishop
  • 33
  • 1
  • 1
  • 5
0
votes
2 answers

Foreach item JSON decode in PHP?

I am trying to do some CS: Global Offensive inventory list for personal experience. Now I dont know how I should display all the items in the inventory. THE INVENTORY JSON { "success":true, "rgInventory":{ "1847345369":{ …
Keenjus
  • 31
  • 2
  • 4
0
votes
1 answer

Steam community Friend list and messageing them

i am trying to do small Application to work with my Team in steam and i have use the jave Implementation suggest in steam ,"Steam Condenser" . So I have try getting Player information like , SteamId id = SteamId.create("XXXXXXXXXX"); String…
Archangle
  • 312
  • 1
  • 4
  • 23
0
votes
1 answer

Search IDictionary based on value member variable

I've got an IDictionary with the KeyPair where SteamApp is a custom class in the SteamAPI framework I'm using. The SteamApp class has a field Name, which I would like to search the dictionary by. I want to search for a specific game…
Herbstein
  • 309
  • 4
  • 12
0
votes
1 answer

Using the SteamWebAPI to send a tradeoffer?

How can I send a trade offer via the Steam Web API or IEconService? I have been searching for ages but can't come up with any information on if it's possible )or not possible) to send tradeoffers with the Steam Web API. If I cannot send tradeoffers…
Andrew
  • 273
  • 1
  • 3
  • 16
0
votes
1 answer

How would I parse this JSON response

I need to parse the JSON response that is linked at the bottom of this post. I have tried several very standard methods to parse this JSON but I believe it is not legal JSON. Does anyone have any solutions that would allow me to parse this…
0
votes
1 answer

Hidden Characters in HTML?

EDIT: Problem is (semi) fixed. Now when I cast the string it becomes and itege I'm trying to fetch a series of pieces of data from the Steam website. One of these pieces of data is the price. The web request I am making returns something similar to…
0
votes
1 answer

Steam API convert Json defindex to name of weapon

so... I started to develop simple tf2 inventory and get API. I'm getting the defindexs from tf2 api $link = file_get_contents("http://api.steampowered.com/IEconItems_440/GetPlayerItems/v0001/?key=" . $api_key . "&steamid=" . $id .…
Krancik
  • 25
  • 5
0
votes
1 answer

Steam API - Game Controller Support

I'm working with the Steam API to get a list of games to show a user, and it would be nice to know if the game supports controllers. Is there a way to find out if a game has full or some controller support from the Steam API?
Kevin Schildhorn
  • 197
  • 2
  • 16
0
votes
1 answer

How to get Steam public key?

For this method: ISteamUserAuth AuthenticateUser Version: 1 HTTP Method: POST Parameters: Name: steamid Type: uint64 Optional: Description: Should be the users steamid, unencrypted. Parameters: Name: sessionkey Type:…
Vishwa Iyer
  • 841
  • 5
  • 14
  • 33
0
votes
2 answers

Grabbing values of an array in sets of 100

In the code below, ids is an array which contains the steam64 ids of all users in your friendslist. Now according to the steam web api documentation, GetPlayerSummaries only takes a list of 100 comma separated steam64 ids. Some users have more than…
Vishwa Iyer
  • 841
  • 5
  • 14
  • 33
0
votes
0 answers

Dreamweaver can load api request, but Google Chrome cannot

So I'm trying to use the steam web api and create a simple page that displays the user's friend list. So far I managed to get an arraylist containing all the steam-64 ids of the user's friend list. However, the problem is I tested this on the live…
Varun Iyer
  • 523
  • 2
  • 10
  • 25