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 field key name

I'm trying to find the key to get returned datas by Steam OpenID after the login. With other OpenID provider we can call some keys, like this one contact/email, to get some datas. For example with the https://openid.stackexchange.com if you ask for…
Jérôme
  • 1,966
  • 4
  • 24
  • 48
0
votes
1 answer

Decoded json file doesn't return whole data in php

After all day trying to find out where there could be a problem, I have to ask. This is json file I'm trying to…
Vergil333
  • 505
  • 1
  • 7
  • 14
0
votes
1 answer

Steam Market Image API

I got a new problem while working on my project. I want to decode this (what I tried until now): $items = array($_POST['eingabe']); $strs = file_get_contents("https://open-market.io/api/search/?name=$items&appID=730&limit=5"); $json =…
ideasia
  • 3
  • 6
0
votes
1 answer

Steam Web Api - Null value in name of games

I try to use Steam-Web-Api first time and I've got some problem. I want to get full list of games - in this case of my profile - I receive list with apiIds etc but each of game has null value in Name field. Here is simple code: public class…
ullQuiorra
  • 31
  • 1
  • 6
0
votes
1 answer

PHP Price Convert?

I am currently grabbing data from steam, they are giving me the price however they are giving me it in this format "1999". That equals to $19.99. I am having problems with converting this to $19.99. I've looked at the money_format function but it…
John Craft
  • 53
  • 3
0
votes
1 answer

Steam Market History Data

So I have written a short script in python that retrieves an item's market history from steam, and I get a response containing the json data. However, I am having some trouble understanding it. For example, one of the pieces of data I receive is…
0
votes
1 answer

Curl + php steam appi, response error

I'm trying to connect to this webpage of the steam api. The market_hash_name parameter is the item I want to search. And as you can see, the response is in the format json. My code is this one: $url =…
lpares12
  • 3,504
  • 4
  • 24
  • 45
0
votes
1 answer

Steam: How retrieve game scheme data?

CS:GO https://api.steampowered.com/IEconItems_730/GetSchema/v2/?key=1C3570A1EB59D14F4DEF3115651B811A&language=ru TF2 https://api.steampowered.com/IEconItems_440/GetSchema/v2/?key=1C3570A1EB59D14F4DEF3115651B811A&language=ru but…
MaXyC
  • 27
  • 5
0
votes
0 answers

Steam tag icon pngs are blank

Here's my situation: I'm scraping HTML from Steam's game pages to collect tag information for various games. Ideally I would use Steam's Web API to collect these tags, but they don't support that... So here's an example for TF2: from…
0
votes
1 answer

Steam Auth $steamid not able to use in routes in laravel

Im trying to use steamid as my route so it will be www.example.com./profile/76561198050605019 The code i have right now is: Route::get('{steamid}', function($steamid){ $user = App\user::find($steamid); echo 'hello my steam name is ' .…
Skel
  • 1,611
  • 3
  • 16
  • 36
0
votes
1 answer

Using Steam Web API from an Android app

I am trying to add some information from Steam into my Android app. I see that Steam has Steamworks, but that is only built for Windows, OSX and Linux. Furthermore, I saw that they also have a Web API that could also be accessed from a mobile…
Scorpio
  • 1,124
  • 1
  • 11
  • 28
0
votes
1 answer

OperationalError: (sqlite3.OperationalError) no such table: user

I'm completely new to flask and web development in general. And what I need is to login to a website using steam id. I'm doing it as it said here, but get the following error: OperationalError: (sqlite3.OperationalError) no such table: user It…
Steve
  • 722
  • 4
  • 10
  • 24
0
votes
1 answer

Steam game positive/negative recommendations

Is there a way to retrieve amount of positive/negative recommendations for a steam game? I've found appdetails function, but it only returns total recommendations…
tlucz
  • 11
  • 1
0
votes
2 answers

Parse JSON-like markup in perl

I am not sure what markup this is to be honest, I though at first JSON but using parse_json from JSON::Parse fails with: JSON error at line 2, byte 15/1380740: Unexpected character '{' parsing initial state: expecting whitespace: '\n', '\r', '\t', '…
dusz
  • 913
  • 1
  • 9
  • 15
0
votes
0 answers

How to make steam login function in meteor.js

https://atmospherejs.com/mrt/accounts-steam has got some packages to do this, but there are no some information how to use it. So, I need manual or some advices how to make steam auth function in my meteor js applicationю