Table of Contents
game.getInfo
Description
Returns information about a game.
Parameters
| Required | Type | Name | Description |
|---|---|---|---|
| required | string | game | Game code that identify a game (string with a length of 12 chars) |
Error Codes
| Code | Description |
|---|---|
| 1 | something bad happened during process |
| 2 | game is not a string or is not a valid game code |
| 3 | game is not found into the database |
If an error occured, an xml with the error code and a brief summary are returned.
Please see this page for more details.
Request Example(s)
http://www.pictogame.com/services/public/?method=game.getInfo&game=wznqNphyOgM1
Example Return XML
<?xml version="1.0" encoding="UTF-8" ?> <ResultSet totalResultsReturned="1" totalResultsAvailable="1"> <Result> <Username>foobar</Username> <Title>My game title</Title> <Description></Description> <Tags></Tags> <RatingAverage>4.6</RatingAverage> <RatingCount>12</RatingCount> <Views>415</Views> <Created>2007-12-04 17:22:54</Created> <Updated>2007-12-04 17:43:31</Updated> </Result> </ResultSet>