The Steam Condenser is a multi-language library for querying the Steam Community, Source and GoldSrc game servers as well as the Steam master servers. Currently it is implemented in Java, PHP and Ruby. It is free software; you can redistribute it and/or modify it under the terms of the new BSD License.
Questions tagged [steam-condenser]
17 questions
7
votes
2 answers
Composer not auto-loading package
I'm currently working on Laravel 4. I have added the following to my composer.json, and ran the update:
"require": {
...
"koraktor/steam-condenser": "*"
The package: https://packagist.org/packages/koraktor/steam-condenser
The…

Alias
- 2,983
- 7
- 39
- 62
4
votes
1 answer
Steam API to get game info
how will I use steam API to get the info on a game if they search a game name in my website
, I'm new to using API's please help!!
example : I need to get the games minimum requirement in my website from steam

Tharun S M
- 47
- 1
- 2
- 9
3
votes
1 answer
PHP steam-condencer: Some IDs return XML errors
I'm currently playing around with this lib before i move my site over to it, But ive run into a problem. Some ID's give XML errors on "SteamId::Create()" -- My test script: (Using API key)

Tristan Cunningham
- 909
- 2
- 10
- 24
2
votes
2 answers
get tradeofferId from one steam account but not from another steam account
When I am send request for trading I am getting response with "tradeofferid" in both steam account.
but when I checked that "tradeofferId" in getoffers list request I am getting only one's steam account's "tradeofferid".
I can't understand what the…

PRIYAL LIMBANI
- 33
- 3
2
votes
1 answer
Catching Exceptions from library using Laravel 5.2
Pretty new to laravel, so I'm not exactly sure how it handles errors and how best to catch them.
I'm using a 3rd party game server connection library that can query game servers in order to pull data such as players, current map etc..
This library…

Mike.Linford
- 95
- 4
- 11
1
vote
2 answers
RubyGem 'steam-condenser' - .fetch method only time and fetch_games undefined method `[]'
I am trying to get some basic information from the Steam Community via the steam-condenser gem and so far the Steam.new seems to work just fine with all the players information.
however when I do this (example)
player = SteamId.new("tiger")
stats =…

donaldLTB
- 11
- 1
1
vote
1 answer
How can I scrape Steam Market history?
I was wondering if someone could give me a few hint on how to scrape efficiently steam market's history? I know there is an API but I can't seem to find a way to extract all the SM history of an item. For exemple, for any item, i'd like to be able…

m0r
- 102
- 9
1
vote
1 answer
Steam get user matches for cs:go
I'm trying to find a solution for getting user stats from steam for Counter Strike GO.
I found a best solution to get user stats from Steam API, but I can't find where to get last user matches, I can get global data, I can get some info of last…

somebodytolove
- 171
- 1
- 1
- 12
1
vote
1 answer
SimpleXMLElement - HTTP status code?
I'm working with the PHP Steam Condenser library, to grab some Steam details about a user. I've successfully implemented this and everything is working. However I started to notice an error being thrown every so often, from Steam Condenser.
What's…

Alias
- 2,983
- 7
- 39
- 62
1
vote
2 answers
steam-condenser: Trying to get property of non-object
Using steam condenser with laravel 4 and installed it via composer.
I am trying to get the players inventory for dota2. I tried:
WebApi::setApiKey('*******');
$inventory = DotA2Inventory::createInventory('username');
But it gives me:
Class…

madziikoy
- 1,447
- 7
- 22
- 32
1
vote
2 answers
Steam-Condenser PHP poll for log entries
I'm looking to actively build a log file from ongoing tf2 games.
Using logaddress_add rcon command, I can get a server to send log entries as they happen, but I'm a bit over my head in getting condenser to keep an active port open and retrieve the…

user1933081
- 13
- 3
1
vote
1 answer
RubyGem 'steam-condenser' - why can I only fetch some profiles?
I have an IRC bot related to gaming(Team Fortress 2 to be specific). I would like to implement some features to it that communicates with Steam API. I am using the steam-condenser gem. I've been fiddling around in IRB trying to understand how it…

maetthew
- 191
- 2
- 14
1
vote
2 answers
steam condenser java errors
I've been working on a little project involving Steam Condenser, a Steam API written in Java, but I haven't been able to actually do anything with it.
I'll explain. This is what the wiki tells me:
SteamId id = new SteamId("demomenz");
GameStats…

Damian
- 161
- 1
- 8
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
3 answers
Confusion with Hashes and Arrays when using steam-condenser Ruby gem
I'm trying to use the steam-condenser gem to pull a list of games for a particular user (myself). So far I have the following:
require 'steam-condenser'
id = SteamId.new 'tamachan87'
games_owned = id.games
games_owned is now a hash, containing…

Tamachan87
- 277
- 5
- 11