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

Steam OpenID PHP and HTML

So I'm trying too make a steam login button for my site but it doesnt redirect to were I want to. Instead it just directs the user to a plain site with the users name and a log out button. I did not write this code I just copied of someone else just…
Massaxe
  • 33
  • 2
  • 8
0
votes
1 answer

PHP Steam Inventory JSon Decoder

I've never worked with json before and I'm unsure how to fully. So essentially I need to get all the items in the rgDescriptions table, but I am honestly unsure how to. So if someone could point me in the right direction that would be great. I've…
JnDone
  • 39
  • 3
0
votes
1 answer

Python Request in unicode

I am trying to make a program that requests to steam to get a the cheapest price for an item. For this I will be using StatTrak™ P250 | Supernova (Factory New) as an example. The problem is that when requesting, you will make a url:…
Moon Cheesez
  • 2,489
  • 3
  • 24
  • 38
0
votes
1 answer

C# json parsing with Json.NET

I'm making a friend list management tool for Steam using the web API. The following JSON is returned by the API: { "friendslist": { "friends": [ { "steamid": "12345678", "relationship": "friend", …
user1365830
  • 171
  • 1
  • 11
0
votes
1 answer

Jquery get request decapitalizing url string

Here is my code: $.get('top secret url and stuff',function(data){ console.log($("[style='color:white']", data.results_html)[0].innerHTML); window.html = document.createElement('div'); …
Aero
  • 117
  • 2
  • 8
0
votes
1 answer

file_get_contents not working with externel sites

I've been using this over 2 months and worked fine until some days ago, when an error message appeared. I use the steam api to get some info of the players. $url = "http://steamcommunity.com/id/CGaKeepoN/?xml=1"; The page is not blank, it has an xml…
KeepoN
  • 137
  • 1
  • 11
0
votes
1 answer

How do I output someone's Steam 64 ID when they click on a button?

I'm trying to create a program in which, when you login with Steam and then there's a button, which when clicked the following happens: If you are not logged in, it takes you to the login. If you are logged in, it writes the user's Steam64ID onto a…
Enkrypton
  • 43
  • 7
0
votes
1 answer

Node Js Steam Trade Offers Bot Items

This bot accept all trades but it need to accept only trade offers which contains [type: 'Consumer Grade SMG',] item in itemsToReceive. I was trying to do something like: If itemsToReceive contains Consumer Grade SMG then accpet offer else cancel…
Asura
  • 19
  • 1
  • 2
0
votes
1 answer

How to use steam API json data in html with jquery?

Im trying to get info from the steam web API. This is the json that the api should output from this: http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=YOUR_STEAM_API_KEY&steamids=76561198059308395 { "response": { …
Shixma
  • 425
  • 1
  • 5
  • 17
0
votes
1 answer

How to get all users' steam id

I'm trying to get all users' Steam id on Steam. I've tried to use steam API, but there's no method to find every player on steam. How can I get all the players IDs on steam ?
shihs
  • 31
  • 5
0
votes
1 answer

RUBY: Get the Steam Username from OmniAuth

I have been using Omniauth to retrieve an environment that contains the steam username. The output looks like this:
corybantic
  • 105
  • 2
  • 12
0
votes
1 answer

How to use token_get_all on large string in php?

I am having some problems with parsing large text strings. I have this line: $tokens = token_get_all(""); and when the string is small it works fine. But when the string is like 15mb my app crashes showing just a blank…
user2707590
  • 1,066
  • 1
  • 14
  • 28
0
votes
2 answers

Different answers to the same queries cUrl (Steam Market)

When in the browser you follow the link: http://steamcommunity.com/market/priceoverview/?country=US%C2%A4cy=5&appid=570&market_hash_name=Gem%20of%20Taegeuk Gives out { "success": false }, In headings 500 a mistake. But when I do the same inquiry…
ToDoThis
  • 45
  • 6
0
votes
1 answer

Looking for something in json file then trying something else if it doesnt work

Im getting json files from a site and i want it to find which ever one gets the file and use that one. Im using the $_GET Method too. There are 2 ways of getting the same file but they both require an id or a custom url from steam. My url example:…
bbousq
  • 615
  • 1
  • 5
  • 13
0
votes
0 answers

Return value from game stats on Steam Web Api

I'm trying to echo a value from the game stats of a certain CS:GO player using Steam's Web API. I'm grabbing the file as so: $gamestatlink =…