
WWW::XBoxLive - Get XBox Live Gamercard information

version 1.120580

my $xbox_live = WWW::XBoxLive->new();
my $gamercard = $xbox_live->get('BrazenStraw3');
say $gamercard->name;
say $gamercard->bio;
for my $game (@{ $gamercard->recent_games }){
say $game->title;
say $game->last_played;
}

This is a module to get and parse an XBox Live Gamercard (i.e. http://gamercard.xbox.com/en-US/BrazenStraw3.card).

Create a new WWW::XBoxLive object. Optionally takes a region argument, which defaults to 'en-US'.
Get a gamercard. Returns an WWW::XBoxLive::Gamercard object.


Jason Clemons wrote a PHP version, which helped me write this version. It is available at https://github.com/JBlaze/Xbox-Gamercard-Data.

Andrew Jones <andrew@arjones.co.uk>

This software is copyright (c) 2011 by Andrew Jones.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.