Game Info This XML feed returns detailed information on a specific game.
Sample
Using the v GET variable for the game title, and the s GET variable for the game's console, we can request info for the supplied game.
Example Implementation:
http://www.gameanyone.com/feeds/game.php?v=[GAME_TITLE]&s=[CONSOLE_ACRONYM]
In this example, we are requesting details on the game Fallout 3 for the Xbox 360.
Example Code:
http://www.gameanyone.com/feeds/game.php?v=Fallout+3&s=X360
The game title in the query string must match the game title as it appears in URLs on GameAnyone. This should not be confused with the display title which may contain special characters. The game title for Fallout 3 can be found in the following url. The console acronym can also be found in this URL. Both of these variables can be obtained through other feeds.
Game URL:
http://www.gameanyone.com/X360/Fallout_3.html
Example Results:
<item> <game>Fallout 3</game> <gamedisplay>Fallout 3</gamedisplay> <system>X360</system> <link>http://www.gameanyone.com/X360/Fallout_3.html</link> <boxart>http://img1.gameanyone.net/images/939933_89318_front.jpg</boxart> <date>Oct 28, 2008</date> <developer>Bethesda Studios</developer> <publisher>Bethesda Softworks</publisher> <esrb>M</esrb> </item>
The results can be used on-the-fly, they can be temporarily cached, or you can even store them permanently in your database.
|