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

How to get steam level and make a check if someone has at least steam level 2

I've been thinking about this so much and made it but something is wrong I think in the code. Can you say me what's it? I'd appreciate it! :)
Red Rubix
  • 11
  • 1
0
votes
1 answer

How to receive the steam player level

How to receive the steam level with steam api.. http://api.steampowered.com/IPlayerService/GetSteamLevel/v1/?key=&steamid= $link =…
DanN
  • 1
  • 1
0
votes
0 answers

Steam auth don't work after update

Steam auth don't work after update. What could be the problem? This is my code: $url = "http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=".$steamauth['apikey']."&steamids=".$matches[1].""; if (isset($_GET['login'])){ require…
0
votes
1 answer

Steam Web API - Parsing JSON result of GetUserStatsForGame

I am trying to parse the incoming JSON from the Steam Web API in order to display specific statistics from a game. In this case, the game is Rust. JSON returned from the API: { "playerstats": { "steamID":"76561198288875739", "gameName":"", …
JohnH
  • 3
  • 5
0
votes
2 answers

Getting all reviews from a steam game using Steamworks but always return the same page?

Currently, I am trying to get all the steam reviews from a particular game, using the method described in the Steamworks documentation: https://partner.steamgames.com/doc/store/getreviews However, when I try to get reviews for a game like Dota 2 for…
Zhen Zuo
  • 11
  • 2
0
votes
3 answers

Derserialize JSON.NET With Unknown RootObject Key

{ "578080": { "success": true, "data": { "type": "game", "name": "PLAYERUNKNOWN'S BATTLEGROUNDS", "steam_appid": 578080, "required_age": 0, "is_free": false, } } } This is from the Steam…
Sean O'Neil
  • 1,222
  • 12
  • 22
0
votes
0 answers

Steam Web API - No Result

I tried to use use the Steam Web API to get Skin Prices for PUBG Skins. Yesterday it worked well but today the request returns nothing. Not even the "Too many Requests" Error. Just nothing. I tried everything. With "file_get_contents" and with a…
Elias
  • 89
  • 1
  • 3
  • 10
0
votes
1 answer

Display steam profiles details in cycle [PHP]

I'm trying to display donators list in the php page. All info of donators is on database. There is a php code: $apikey = 'my_apikey_here'; $host = 'db_host'; $user = 'db_user'; $password = 'db_user_pw'; $database = 'db'; $connection = new…
inGame
  • 17
  • 6
0
votes
1 answer

Passing row.id from the database to return in the function - Node.js

I am trying to add in the Node.js id to session retrieved from the database. I edits the steam-login for this purpose, but everything except the passing of the id works. I know why it does not work. This is because the query in node.js is…
user7448667
0
votes
0 answers

Node.js Cannot read property 'length' of undefined

I can´t figure why it is giving me this error while starting the node app: C:\Users\alien\Desktop\SCBM\Bot\SteamCardBot-master>node index.js C:\Users\alien\Desktop\SCBM\Bot\SteamCardBot-master\utils.js:36 for (let i = 0; i <…
0
votes
0 answers

Unable to Obtain Steam Private Data of Myself with my own Apikey and Steamid

The URL Im using is http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=12345DA4123456ED05A9A9B41234567&steamids=123123123123123 I changed the apikey and steamid because I dont want to share it. The Apikey Is mine and the steamid…
Jacob
  • 1
  • 2
0
votes
0 answers

Trying to show inventory with Steam API

So I just started with this API, and I am stuck on this part for about a day. I want to show all of the inventory items (Code below has a var_dump). PHP Code: $data = file_get_contents('http://steamcommunity.com/profiles/' .…
Waylon194
  • 43
  • 1
  • 11
0
votes
0 answers

Steam Web API Integration with ASP.NET site

I've been designing a website in ASP.NET, and I have been researching many ways to integrate the Steam Web API into my site. Whenever I try a method, it seems promising, but there is always a problem that I can't seem to overcome. Most of the…
SlothGod
  • 356
  • 1
  • 4
  • 19
0
votes
1 answer

Steam Web Api Authenticate HTTP Request Error

I am game developer with unity and socket.io. I want to use Steam API in order to check that client have ownership of my game. I want use Steam Web API. So I send test request like this because I don't know the format of…
이후성
  • 1
  • 3
0
votes
1 answer

Deserializing result of steam storefront api using RestSharp always returns null

I've been trying to use the steam storefront api http://store.steampowered.com/api/. The problem is that when I feed the result of the api to RestSharp, the data is always null. So my question is how do I get the Rest call deserialized? First, this…