SteamID field has been added to our Detailed Report input forms and I have setup the XML data output...
One may use
Quote:
http://www.wsgf.org/mgl/xml/SteamID
to get info on a game, example
http://www.wsgf.org/mgl/xml/107410Code:
<?xml version="1.0" encoding="UTF-8" ?><xml>
<node>
<Title>ARMA 3 Alpha</Title>
<SteamID>107410</SteamID>
<Path>http://www.wsgf.org/dr/arma-3-alpha/en</Path>
<WideScreenGrade>A</WideScreenGrade>
<MultiMonitorGrade>A</MultiMonitorGrade>
</node>
</xml>
Alternatively if one was to drop the SteamID entirely it will display the full list of titles with SteamID's, example
http://www.wsgf.org/mgl/xml/Code:
<?xml version="1.0" encoding="UTF-8" ?><xml>
<node>
<Title>DmC: Devil May Cry</Title>
<SteamID>220440</SteamID>
<Path>http://www.wsgf.org/dr/dmc-devil-may-cry/en</Path>
<WideScreenGrade>A</WideScreenGrade>
<MultiMonitorGrade>A</MultiMonitorGrade>
</node>
<node>
<Title>ARMA 3 Alpha</Title>
<SteamID>107410</SteamID>
<Path>http://www.wsgf.org/dr/arma-3-alpha/en</Path>
<WideScreenGrade>A</WideScreenGrade>
<MultiMonitorGrade>A</MultiMonitorGrade>
</node>
<node>
<Title>Star Conflict</Title>
<SteamID>212070</SteamID>
<Path>http://www.wsgf.org/dr/star-conflict/en</Path>
<WideScreenGrade>A</WideScreenGrade>
<MultiMonitorGrade>Unsupported</MultiMonitorGrade>
</node>
</xml>
Gotta love Drupal + Views with arguments
Of cause we still need to get all the SteamIDs into the games DR's, I found a steam list
http://api.steampowered.com/ISteamApps/ ... ist/v0002/ that provides the titles and app numbers/ID's so we can hopefully automate most of this with a few done manually for anything that does not quite match up title wise.