Version 0.2 Released - July 1st 2008
A personal project that I have been working involves tracking Xbox live GamerScore. One of my personal favorite Xbox sites is
360voice.com where your Xbox 360 blogs about your playing habits. 360 voice has an
API set including one that returns the GamerScore history for a particular Gamertag.
I ended up building a helper class that calls out the 360voice API and returns objects that can be used in .NET programing. It's using LINQ to XML in .NET 3.5 and filling in some custom objects that you can consume inside your own program. I'm only using a subset of the 360 voice API calls but I figure this code can help someone else out there and can easily be modified to include the missing API calls.
The current release implements:
360voice.gamertag.exists
360voice.gamertag.profile
360voice.score.getlist
360voice.games.list
360voice.games.showtiles
360voice.games.listfav
Detail posts can be view on my personal blog
http://pnc1.com/blogs/carsinigin/ under the
API360Voice tag.