gamertag 1.1.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +11 -1
  3. data/LICENSE.md +11 -0
  4. data/README.md +84 -0
  5. data/gamertag.gemspec +25 -25
  6. data/lib/faraday/response/cleanup_xbox_leaders_naming.rb +30 -0
  7. data/lib/faraday/response/raise_xbox_leaders_error.rb +22 -0
  8. data/lib/gamertag.rb +21 -10
  9. data/lib/gamertag/client.rb +25 -0
  10. data/lib/gamertag/client/achievements.rb +15 -0
  11. data/lib/gamertag/client/friends.rb +14 -0
  12. data/lib/gamertag/client/games.rb +41 -0
  13. data/lib/gamertag/client/profile.rb +14 -0
  14. data/lib/gamertag/configuration.rb +48 -0
  15. data/lib/gamertag/connection.rb +22 -0
  16. data/lib/gamertag/error.rb +22 -0
  17. data/lib/gamertag/version.rb +2 -2
  18. data/spec/client/achievements_spec.rb +21 -0
  19. data/spec/client/friends_spec.rb +23 -0
  20. data/spec/client/games_spec.rb +49 -0
  21. data/spec/client/profile_spec.rb +22 -0
  22. data/spec/client_spec.rb +7 -0
  23. data/spec/faraday/xboxleader_cleanup_spec.rb +59 -0
  24. data/spec/faraday/xboxleader_error_spec.rb +63 -0
  25. data/spec/fixtures/achievements.json +654 -0
  26. data/spec/fixtures/errors/friends_not_found.json +9 -0
  27. data/spec/fixtures/errors/game_not_found.json +9 -0
  28. data/spec/fixtures/errors/gamertag_not_found.json +9 -0
  29. data/spec/fixtures/errors/invalid_game_id.json +9 -0
  30. data/spec/fixtures/errors/invalid_gamertag.json +9 -0
  31. data/spec/fixtures/friends.json +772 -0
  32. data/spec/fixtures/gamertag_not_found.json +9 -0
  33. data/spec/fixtures/games.json +2244 -0
  34. data/spec/fixtures/profile.json +125 -0
  35. data/spec/gamertag_spec.rb +13 -0
  36. data/spec/helper.rb +38 -0
  37. metadata +92 -124
  38. data/.gitignore +0 -9
  39. data/.rspec +0 -3
  40. data/.rvmrc +0 -1
  41. data/Gemfile +0 -4
  42. data/LICENSE +0 -20
  43. data/README.mdown +0 -106
  44. data/Rakefile +0 -12
  45. data/lib/gamertag/friends.rb +0 -25
  46. data/lib/gamertag/played_games.rb +0 -73
  47. data/lib/gamertag/profile.rb +0 -13
  48. data/lib/gamertag/simple_profile.rb +0 -68
  49. data/spec/fixtures/vcr_cassettes/Friends_Belial1984.yml +0 -520
  50. data/spec/fixtures/vcr_cassettes/PlayedGames_Belial1984.yml +0 -1309
  51. data/spec/fixtures/vcr_cassettes/PlayedGames_some_user.yml +0 -100
  52. data/spec/fixtures/vcr_cassettes/SimpleProfile_Belial1984.yml +0 -45
  53. data/spec/friends_spec.rb +0 -19
  54. data/spec/played_games_spec.rb +0 -25
  55. data/spec/profile_spec.rb +0 -15
  56. data/spec/simple_profile_spec.rb +0 -69
  57. data/spec/spec_helper.rb +0 -15
  58. data/spec/version_spec.rb +0 -7
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- coverage
2
- rdoc
3
- doc
4
- .yardoc
5
- .bundle
6
- pkg
7
- Gemfile.lock
8
- *.swp
9
- *.gem
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --colour
2
- --format doc
3
-
data/.rvmrc DELETED
@@ -1 +0,0 @@
1
- rvm use 1.9.3@gamertag_gem --create
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- # Specify your gem's dependencies in gamertag.gemspec
4
- gemspec
data/LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) 2011-2013 Baris Balic, David Czarnecki
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,106 +0,0 @@
1
- # Gamertag
2
-
3
- An interface for accessing your XBOX Live profile and game data.
4
-
5
- ## Install
6
-
7
- ```ruby
8
- gem install gamertag
9
- ```
10
-
11
- Gemfile:
12
-
13
- ```ruby
14
- gem 'gamertag'
15
- ```
16
-
17
- ## Usage
18
-
19
- This gem fetches data from two independent sources, which has several implications such as one of the sources not being available, or an increased overhead when you only want to access some of the data. To this end the interface will allow you to access all data, just the profile data or just the played games data.
20
-
21
- Example: Obtaining your profile and played games. Methods are those available to the simple profile and played games.
22
-
23
- ```ruby
24
- profile = Gamertag::Profile.new('Belial1984')
25
-
26
- profile.gamertag
27
- profile.recent_games {|game| game.title }
28
- profile.played_games {|game| game.title }
29
- ```
30
-
31
- Example: Obtaining your profile and recent games only.
32
-
33
- ```ruby
34
- profile = Gamertag::SimpleProfile.new('Belial1984')
35
-
36
- profile.gamertag
37
- profile.profile_link
38
- profile.account_status
39
- profile.gender
40
- profile.is_cheater
41
- profile.online
42
- profile.online_status
43
- profile.reputation
44
- profile.gamerscore
45
- profile.location
46
- profile.motto
47
- profile.name
48
- profile.bio
49
- profile.avatars.small_gamerpic
50
- profile.avatars.large_gamerpic
51
- profile.avatars.body_gamerpic
52
- profile.recent_games.each do |game|
53
- game.title
54
- game.tid # Probably some arbitrary title id
55
- game.marketplace_url
56
- game.compare_url
57
- game.image
58
- game.last_played
59
- game.earned_gamerscore
60
- game.available_gamerscore
61
- game.earned_achievements
62
- game.avilable_achievements
63
- game.percentage_complete
64
- end
65
- ```
66
-
67
- Example: Obtaining your played games only.
68
-
69
- ```ruby
70
- played_games = Gamertag::PlayedGames.new('Belial1984')
71
- played_games.each do |game|
72
- game.image
73
- game.last_played
74
- game.earned_gamerscore
75
- game.available_gamerscore
76
- game.earned_achievements
77
- game.available_achievements
78
- game.average_gamerscore
79
- game.relative_gamerscore => :above_average || :below_average || :undefined
80
- end
81
- ```
82
-
83
- Example: Obtaining your friends information.
84
-
85
- ```ruby
86
- gamertag = Gamertag::Friends('Belial1984')
87
- gamertag.friends.each do |friend|
88
- end
89
- gamertag.online_friends.each do |online_friend|
90
- end
91
- ```
92
-
93
- ## Documentation
94
-
95
- You can find [online documentation](http://rubydoc.info/github/barisbalic/gamertag/) that describes the API in more detail.
96
-
97
- ## Note on Patches/Pull Requests
98
-
99
- * Fork the project.
100
- * Make your feature addition or bug fix.
101
- * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
102
- * Send me a pull request.
103
-
104
- ## Copyright
105
-
106
- Copyright (c) 2011-2013 Baris Balic, David Czarnecki.
data/Rakefile DELETED
@@ -1,12 +0,0 @@
1
- require 'bundler'
2
- Bundler::GemHelper.install_tasks
3
-
4
- require 'rake'
5
- require 'rspec/core/rake_task'
6
-
7
- RSpec::Core::RakeTask.new(:spec) do |spec|
8
- spec.pattern = 'spec/**/*_spec.rb'
9
- spec.rspec_opts = ['--backtrace']
10
- end
11
-
12
- task :default => :spec
@@ -1,25 +0,0 @@
1
- require 'cgi'
2
- module Gamertag
3
- class Friends
4
- def initialize(gamertag)
5
- @friends = fetch(gamertag)
6
- end
7
-
8
- def friends
9
- @friends['Friends']
10
- end
11
-
12
- def online_friends
13
- friends.select(&:IsOnline)
14
- end
15
-
16
- private
17
-
18
- def fetch(gamertag)
19
- uri = URI.parse("http://www.xboxleaders.com/api/friends.json?gamertag=#{CGI.escape gamertag}")
20
- response = Net::HTTP.get_response(uri)
21
- hash = JSON.parse(response.body)
22
- Hashie::Mash.new hash['Data']
23
- end
24
- end
25
- end
@@ -1,73 +0,0 @@
1
- require 'cgi'
2
- module Gamertag
3
- class PlayedGames
4
- # Create a new instacne of +PlayedGames+ with a given gamertag. You will
5
- # then be able to iterate over the items returned from xboxgamertag.com
6
- # using iterator methods such as +first+, +last+, +each+, +count+, and
7
- # +to_hash+.
8
- #
9
- # @param gamertag [String] XBOX gamertag to retrieve played games for.
10
- def initialize(gamertag)
11
- @played_games = fetch(gamertag)
12
- end
13
-
14
- # Iterator over each of the played games using a block.
15
- #
16
- # @param block [block] Each played game for the gamertag will be passed to the block.
17
- def each(&block)
18
- @played_games.each(&block)
19
- end
20
-
21
- # +first+, +last+, +count+, and +to_hash+ will be sent to the
22
- # internal class variable holding the played games information.
23
- def method_missing(method_name, args = nil)
24
- [:first, :last, :count, :to_hash].each {|method| return @played_games.send(method) if method_name == method }
25
- @played_games[method_name.to_s]
26
- end
27
-
28
- private
29
-
30
- # Fetch played game information for a given XBOX gamertag.
31
- #
32
- # @param gamertag [String] XBOX gamertag to retrieve played games for.
33
- #
34
- # @return A +Hashie::Mash+ of the "parsed" played game information.
35
- def fetch(gamertag)
36
- uri = URI.parse("http://www.xboxgamertag.com/search/#{CGI.escape gamertag}/")
37
- response = Net::HTTP.get_response(uri)
38
- document = Nokogiri::HTML(response.body)
39
- parse_rows(document)
40
- end
41
-
42
- # Parse the HTML from xboxgamertag.com to retrieve played game
43
- # information such as title, earned_achievements, etc.
44
- #
45
- # @param document [Nokogiri::HTML] HTML document
46
- #
47
- # @return A +Hashie::Mash+ of the "parsed" played game information.
48
- def parse_rows(document)
49
- # Nasty HTML scraping hack, maybe pull into another class?
50
- document.css("[id='recentGamesTable']").css('tr').map do |table_row|
51
- cells = table_row.css('td')
52
-
53
- naming = cells[1].css("p")
54
- gamerscore = cells[2].css("div[class='percentage-container']").first.text.strip!.split('/')
55
- achievements = (cells[2].css("div[class='percentage-container']").last.text).strip!.split('/')
56
-
57
- average_gamerscore = cells[3].css('span').text.strip!
58
- relative_gamerscore = cells[3].css('span').attribute('title').text.include?('above average') ? :above_average : :below_average rescue :undefined
59
-
60
- Hashie::Mash.new({'image' => cells[0].css('img').attribute('src').text,
61
- 'title' => naming.first.text,
62
- 'last_played' => naming.last.text,
63
- 'earned_gamerscore' => gamerscore.first,
64
- 'available_gamerscore' => gamerscore.last,
65
- 'earned_achievements' => achievements.first,
66
- 'available_achievements' => achievements.last,
67
- 'average_gamerscore' => average_gamerscore,
68
- 'relative_gamerscore' => relative_gamerscore
69
- })
70
- end
71
- end
72
- end
73
- end
@@ -1,13 +0,0 @@
1
- module Gamertag
2
- class Profile < SimpleProfile
3
- attr_reader :played_games
4
-
5
- # Create a new profile for an XBOX gamertag.
6
- #
7
- # @param gamertag [String] XBOX gamertag to retrieve +Gamertag::PlayedGames+ for.
8
- def initialize(gamertag)
9
- super(gamertag)
10
- @played_games = PlayedGames.new(gamertag)
11
- end
12
- end
13
- end
@@ -1,68 +0,0 @@
1
- require 'cgi'
2
- module Gamertag
3
- class SimpleProfile
4
- # Retrieve XBOX profile information for a given XBOX gamertag from
5
- # xboxleaders.com
6
- #
7
- # @param gamertag [String] XBOX gamertag to retrieve profile information for.
8
- # @param seed_data [Hash, nil] Seed data to be used for profile information.
9
- def initialize(gamertag, seed_data = nil)
10
- if seed_data
11
- @profile = seed_data
12
- else
13
- @profile = fetch(gamertag)
14
- end
15
- end
16
-
17
- # Parse profile information from JSON data.
18
- #
19
- # @param data [String] JSON data containing XBOX profile information.
20
- #
21
- # @return Parsed profile information from JSON data.
22
- def self.from_json(data)
23
- data = JSON.parse(data)
24
- new(data["gamertag"], data)
25
- end
26
-
27
- # Dispatch method names like +gamertag+ or +gamerscore+ to the profile Hash.
28
- #
29
- # @param method_name [Symbol] Method name.
30
- # @param args [Array, nil] Method arguments.
31
- #
32
- # @return Information from the profile Hash or +nil+ if not found.
33
- def method_missing(method_name, args = nil)
34
- @profile[method_name.to_s]
35
- end
36
-
37
- # Retrieve the recent games from the profile.
38
- #
39
- # @return Recent games from the profile.
40
- def recent_games
41
- @profile['recent_games'].map do |k, v|
42
- Hashie::Mash.new(v.merge({'last_played' => Time.at(v['last_played'].to_i)}))
43
- end
44
- end
45
-
46
- # Retrieve the various avatars in use for a profile.
47
- #
48
- # @return The various avatars in use for a profile.
49
- def avatars
50
- Hashie::Mash.new(@profile['avatars'])
51
- end
52
-
53
- private
54
-
55
- # Retrieve the profile information as JSON from xboxleaders.com for a given
56
- # XBOX gamertag.
57
- #
58
- # @param gamertag [String] XBOX gamertag to retrieve profile information for.
59
- #
60
- # @return Hash of profile information from xboxleaders.com.
61
- def fetch(gamertag)
62
- uri = URI.parse("http://api.xboxleaders.com/v2/?gamertag=#{CGI.escape gamertag}&format=json")
63
- response = Net::HTTP.get_response(uri)
64
- hash = JSON.parse(response.body)
65
- hash['user']
66
- end
67
- end
68
- end
@@ -1,520 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://www.xboxleaders.com/api/friends.json?gamertag=Belial1984
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- accept:
11
- - ! '*/*'
12
- user-agent:
13
- - Ruby
14
- response:
15
- status:
16
- code: 200
17
- message: OK
18
- headers:
19
- date:
20
- - Sat, 12 Jan 2013 11:55:29 GMT
21
- server:
22
- - Apache/2.2.14 (Ubuntu)
23
- x-powered-by:
24
- - Luracast Restler v2.1.0
25
- cache-control:
26
- - no-cache, must-revalidate
27
- expires:
28
- - '0'
29
- transfer-encoding:
30
- - chunked
31
- content-type:
32
- - application/json
33
- body:
34
- encoding: US-ASCII
35
- string: ! "{\n \"Data\": {\n \"TotalFriends\": 65,\n \"TotalOnlineFriends\":
36
- 7,\n \"TotalOfflineFriends\": 58,\n \"Friends\": [\n {\n \"Gamertag\":
37
- \"Ageblaster\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4b4b07d1\\/tile\\/0\\/18023\",\n
38
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4b4b07d1\\/tile\\/0\\/28023\",\n
39
- \ \"GamerScore\": 25655,\n \"IsOnline\": false,\n \"PresenceInfo\":
40
- {\n \"LastOnline\": 1357873864,\n \"OnlineStatus\": \"Last
41
- seen 1\\/11\\/2013 playing Halo 4\",\n \"Game\": {\n \"Title\":
42
- \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
43
- \ }\n }\n },\n {\n \"Gamertag\": \"Alch3mist87\",\n
44
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Alch3mist87\\/avatarpic-s.png\",\n
45
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Alch3mist87\\/avatarpic-l.png\",\n
46
- \ \"GamerScore\": 5640,\n \"IsOnline\": false,\n \"PresenceInfo\":
47
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
48
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
49
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
50
- \ }\n }\n },\n {\n \"Gamertag\": \"alcoholfairy\",\n
51
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11020\",\n
52
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21020\",\n
53
- \ \"GamerScore\": 2030,\n \"IsOnline\": false,\n \"PresenceInfo\":
54
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
55
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
56
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
57
- \ }\n }\n },\n {\n \"Gamertag\": \"Andrewnez\",\n
58
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Andrewnez\\/avatarpic-s.png\",\n
59
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Andrewnez\\/avatarpic-l.png\",\n
60
- \ \"GamerScore\": 15865,\n \"IsOnline\": false,\n \"PresenceInfo\":
61
- {\n \"LastOnline\": 1357859762,\n \"OnlineStatus\": \"Last
62
- seen 1\\/10\\/2013 playing Halo 4\",\n \"Game\": {\n \"Title\":
63
- \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
64
- \ }\n }\n },\n {\n \"Gamertag\": \"ANDREWsALSTON\",\n
65
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ANDREWsALSTON\\/avatarpic-s.png\",\n
66
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ANDREWsALSTON\\/avatarpic-l.png\",\n
67
- \ \"GamerScore\": 25610,\n \"IsOnline\": false,\n \"PresenceInfo\":
68
- {\n \"LastOnline\": 1357920355,\n \"OnlineStatus\": \"Last
69
- seen 19 hours ago playing Just Dance 4\",\n \"Game\": {\n \"Title\":
70
- \"Just Dance 4\",\n \"Id\": 1431505077,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505077\"\n
71
- \ }\n }\n },\n {\n \"Gamertag\": \"barball\",\n
72
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/barball\\/avatarpic-s.png\",\n
73
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/barball\\/avatarpic-l.png\",\n
74
- \ \"GamerScore\": 19434,\n \"IsOnline\": false,\n \"PresenceInfo\":
75
- {\n \"LastOnline\": 1357948735,\n \"OnlineStatus\": \"Last
76
- seen 11 hours ago playing BBC iPlayer\",\n \"Game\": {\n \"Title\":
77
- \"BBC iPlayer\",\n \"Id\": 1180174289,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1180174289\"\n
78
- \ }\n }\n },\n {\n \"Gamertag\": \"BennyP83\",\n
79
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BennyP83\\/avatarpic-s.png\",\n
80
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BennyP83\\/avatarpic-l.png\",\n
81
- \ \"GamerScore\": 3384,\n \"IsOnline\": false,\n \"PresenceInfo\":
82
- {\n \"LastOnline\": 1357508211,\n \"OnlineStatus\": \"Last
83
- seen 1\\/6\\/2013 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
84
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
85
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
86
- \ }\n },\n {\n \"Gamertag\": \"BigMFRick777\",\n \"AvatarSmall\":
87
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410a5a\\/tile\\/0\\/1000d\",\n
88
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410a5a\\/tile\\/0\\/2000d\",\n
89
- \ \"GamerScore\": 17840,\n \"IsOnline\": false,\n \"PresenceInfo\":
90
- {\n \"LastOnline\": 1357944566,\n \"OnlineStatus\": \"Last
91
- seen 13 hours ago playing COD: Black Ops II\",\n \"Game\": {\n \"Title\":
92
- \"COD: Black Ops II\",\n \"Id\": 1096157379,\n \"Url\":
93
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1096157379\"\n }\n
94
- \ }\n },\n {\n \"Gamertag\": \"BillieBeardyPip\",\n
95
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BillieBeardyPip\\/avatarpic-s.png\",\n
96
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BillieBeardyPip\\/avatarpic-l.png\",\n
97
- \ \"GamerScore\": 6640,\n \"IsOnline\": false,\n \"PresenceInfo\":
98
- {\n \"LastOnline\": 1354467883,\n \"OnlineStatus\": \"Last
99
- seen 12\\/2\\/2012 playing Red Dead Redemption\",\n \"Game\": {\n
100
- \ \"Title\": \"Red Dead Redemption\",\n \"Id\": 1414793259,\n
101
- \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793259\"\n
102
- \ }\n }\n },\n {\n \"Gamertag\": \"BladeHellSpawn\",\n
103
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BladeHellSpawn\\/avatarpic-s.png\",\n
104
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/BladeHellSpawn\\/avatarpic-l.png\",\n
105
- \ \"GamerScore\": 56762,\n \"IsOnline\": true,\n \"PresenceInfo\":
106
- {\n \"LastOnline\": 1357990988,\n \"OnlineStatus\": \"Online
107
- playing Borderlands 2\",\n \"Game\": {\n \"Title\": \"Borderlands
108
- 2\",\n \"Id\": 1414793340,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793340\"\n
109
- \ }\n }\n },\n {\n \"Gamertag\": \"Brincat1983\",\n
110
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Brincat1983\\/avatarpic-s.png\",\n
111
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Brincat1983\\/avatarpic-l.png\",\n
112
- \ \"GamerScore\": 5184,\n \"IsOnline\": false,\n \"PresenceInfo\":
113
- {\n \"LastOnline\": 1357951386,\n \"OnlineStatus\": \"Last
114
- seen 11 hours ago playing FIFA 13\",\n \"Game\": {\n \"Title\":
115
- \"FIFA 13\",\n \"Id\": 1161890200,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161890200\"\n
116
- \ }\n }\n },\n {\n \"Gamertag\": \"CennyddB\",\n
117
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/CennyddB\\/avatarpic-s.png\",\n
118
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/CennyddB\\/avatarpic-l.png\",\n
119
- \ \"GamerScore\": 6849,\n \"IsOnline\": true,\n \"PresenceInfo\":
120
- {\n \"LastOnline\": 1357988481,\n \"OnlineStatus\": \"Online
121
- playing Borderlands 2\",\n \"Game\": {\n \"Title\": \"Borderlands
122
- 2\",\n \"Id\": 1414793340,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793340\"\n
123
- \ }\n }\n },\n {\n \"Gamertag\": \"Chipmuck
124
- Killer\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11016\",\n
125
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21016\",\n
126
- \ \"GamerScore\": 8165,\n \"IsOnline\": false,\n \"PresenceInfo\":
127
- {\n \"LastOnline\": 1357873989,\n \"OnlineStatus\": \"Last
128
- seen 1\\/11\\/2013 playing Halo 4\",\n \"Game\": {\n \"Title\":
129
- \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
130
- \ }\n }\n },\n {\n \"Gamertag\": \"Claw MD\",\n
131
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Claw%20MD\\/avatarpic-s.png\",\n
132
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Claw%20MD\\/avatarpic-l.png\",\n
133
- \ \"GamerScore\": 23100,\n \"IsOnline\": false,\n \"PresenceInfo\":
134
- {\n \"LastOnline\": 1357942899,\n \"OnlineStatus\": \"Last
135
- seen 13 hours ago playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
136
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
137
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
138
- \ }\n },\n {\n \"Gamertag\": \"Cushman12\",\n \"AvatarSmall\":
139
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Cushman12\\/avatarpic-s.png\",\n
140
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Cushman12\\/avatarpic-l.png\",\n
141
- \ \"GamerScore\": 2438,\n \"IsOnline\": false,\n \"PresenceInfo\":
142
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
143
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
144
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
145
- \ }\n }\n },\n {\n \"Gamertag\": \"DaftPix\",\n
146
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/DaftPix\\/avatarpic-s.png\",\n
147
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/DaftPix\\/avatarpic-l.png\",\n
148
- \ \"GamerScore\": 6180,\n \"IsOnline\": false,\n \"PresenceInfo\":
149
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
150
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
151
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
152
- \ }\n }\n },\n {\n \"Gamertag\": \"Danvers\",\n
153
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Danvers\\/avatarpic-s.png\",\n
154
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Danvers\\/avatarpic-l.png\",\n
155
- \ \"GamerScore\": 69075,\n \"IsOnline\": false,\n \"PresenceInfo\":
156
- {\n \"LastOnline\": 1357871190,\n \"OnlineStatus\": \"Last
157
- seen 1\\/11\\/2013 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
158
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
159
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
160
- \ }\n },\n {\n \"Gamertag\": \"daveyj666\",\n \"AvatarSmall\":
161
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/daveyj666\\/avatarpic-s.png\",\n
162
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/daveyj666\\/avatarpic-l.png\",\n
163
- \ \"GamerScore\": 31090,\n \"IsOnline\": false,\n \"PresenceInfo\":
164
- {\n \"LastOnline\": 1357678495,\n \"OnlineStatus\": \"Last
165
- seen 1\\/8\\/2013 playing My Xbox LIVE\",\n \"Game\": {\n \"Title\":
166
- \"My Xbox LIVE\",\n \"Id\": 1297290147,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297290147\"\n
167
- \ }\n }\n },\n {\n \"Gamertag\": \"donkykong50\",\n
168
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/donkykong50\\/avatarpic-s.png\",\n
169
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/donkykong50\\/avatarpic-l.png\",\n
170
- \ \"GamerScore\": 9432,\n \"IsOnline\": false,\n \"PresenceInfo\":
171
- {\n \"LastOnline\": 1357901878,\n \"OnlineStatus\": \"Last
172
- seen 1\\/11\\/2013 playing Fight Night Champ Demo\",\n \"Game\":
173
- {\n \"Title\": \"Fight Night Champ Demo\",\n \"Id\":
174
- 1161922895,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161922895\"\n
175
- \ }\n }\n },\n {\n \"Gamertag\": \"EJStyleS\",\n
176
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58570a70\\/tile\\/0\\/10402\",\n
177
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58570a70\\/tile\\/0\\/20402\",\n
178
- \ \"GamerScore\": 81333,\n \"IsOnline\": false,\n \"PresenceInfo\":
179
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
180
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
181
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
182
- \ }\n }\n },\n {\n \"Gamertag\": \"ElZer0\",\n
183
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ElZer0\\/avatarpic-s.png\",\n
184
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ElZer0\\/avatarpic-l.png\",\n
185
- \ \"GamerScore\": 90533,\n \"IsOnline\": false,\n \"PresenceInfo\":
186
- {\n \"LastOnline\": 1357988256,\n \"OnlineStatus\": \"Last
187
- seen 57 minutes ago playing Halo 4\",\n \"Game\": {\n \"Title\":
188
- \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
189
- \ }\n }\n },\n {\n \"Gamertag\": \"Eternal
190
- Epoch\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Eternal%20Epoch\\/avatarpic-s.png\",\n
191
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Eternal%20Epoch\\/avatarpic-l.png\",\n
192
- \ \"GamerScore\": 54416,\n \"IsOnline\": false,\n \"PresenceInfo\":
193
- {\n \"LastOnline\": 1357951148,\n \"OnlineStatus\": \"Last
194
- seen 11 hours ago playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
195
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
196
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
197
- \ }\n },\n {\n \"Gamertag\": \"French Mako\",\n \"AvatarSmall\":
198
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410811\\/tile\\/0\\/1000d\",\n
199
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.58410811\\/tile\\/0\\/2000d\",\n
200
- \ \"GamerScore\": 9285,\n \"IsOnline\": false,\n \"PresenceInfo\":
201
- {\n \"LastOnline\": 1357947551,\n \"OnlineStatus\": \"Last
202
- seen 12 hours ago playing Far Cry\\u00ae 3\",\n \"Game\": {\n \"Title\":
203
- \"Far Cry\\u00ae 3\",\n \"Id\": 1431505036,\n \"Url\":
204
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505036\"\n }\n
205
- \ }\n },\n {\n \"Gamertag\": \"Glancer914\",\n \"AvatarSmall\":
206
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Glancer914\\/avatarpic-s.png\",\n
207
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Glancer914\\/avatarpic-l.png\",\n
208
- \ \"GamerScore\": 19167,\n \"IsOnline\": false,\n \"PresenceInfo\":
209
- {\n \"LastOnline\": 1357328000,\n \"OnlineStatus\": \"Last
210
- seen 1\\/4\\/2013 playing DOOM 3 BFG Edition\",\n \"Game\": {\n \"Title\":
211
- \"DOOM 3 BFG Edition\",\n \"Id\": 1112737777,\n \"Url\":
212
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1112737777\"\n }\n
213
- \ }\n },\n {\n \"Gamertag\": \"greenFUDGE\",\n \"AvatarSmall\":
214
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/greenFUDGE\\/avatarpic-s.png\",\n
215
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/greenFUDGE\\/avatarpic-l.png\",\n
216
- \ \"GamerScore\": 7955,\n \"IsOnline\": false,\n \"PresenceInfo\":
217
- {\n \"LastOnline\": 1357274833,\n \"OnlineStatus\": \"Last
218
- seen 1\\/4\\/2013 playing SUPER STREETFIGHTER IV\",\n \"Game\": {\n
219
- \ \"Title\": \"SUPER STREETFIGHTER IV\",\n \"Id\": 1128468384,\n
220
- \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1128468384\"\n
221
- \ }\n }\n },\n {\n \"Gamertag\": \"HD PLAYA\",\n
222
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/HD%20PLAYA\\/avatarpic-s.png\",\n
223
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/HD%20PLAYA\\/avatarpic-l.png\",\n
224
- \ \"GamerScore\": 9225,\n \"IsOnline\": false,\n \"PresenceInfo\":
225
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
226
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
227
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
228
- \ }\n }\n },\n {\n \"Gamertag\": \"hectic4\",\n
229
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.454107ef\\/tile\\/0\\/18001\",\n
230
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.454107ef\\/tile\\/0\\/28001\",\n
231
- \ \"GamerScore\": 8074,\n \"IsOnline\": false,\n \"PresenceInfo\":
232
- {\n \"LastOnline\": 1356123221,\n \"OnlineStatus\": \"Last
233
- seen 12\\/21\\/2012 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
234
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
235
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
236
- \ }\n },\n {\n \"Gamertag\": \"Hemalkay\",\n \"AvatarSmall\":
237
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Hemalkay\\/avatarpic-s.png\",\n
238
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Hemalkay\\/avatarpic-l.png\",\n
239
- \ \"GamerScore\": 465,\n \"IsOnline\": false,\n \"PresenceInfo\":
240
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
241
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
242
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
243
- \ }\n }\n },\n {\n \"Gamertag\": \"herbiliza\",\n
244
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/herbiliza\\/avatarpic-s.png\",\n
245
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/herbiliza\\/avatarpic-l.png\",\n
246
- \ \"GamerScore\": 19493,\n \"IsOnline\": false,\n \"PresenceInfo\":
247
- {\n \"LastOnline\": 1356631314,\n \"OnlineStatus\": \"Last
248
- seen 12\\/27\\/2012 playing Kinect Adventures\",\n \"Game\": {\n
249
- \ \"Title\": \"Kinect Adventures\",\n \"Id\": 1297287405,\n
250
- \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287405\"\n
251
- \ }\n }\n },\n {\n \"Gamertag\": \"jokeday\",\n
252
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10003\",\n
253
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20003\",\n
254
- \ \"GamerScore\": 2950,\n \"IsOnline\": false,\n \"PresenceInfo\":
255
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
256
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
257
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
258
- \ }\n }\n },\n {\n \"Gamertag\": \"kretell2\",\n
259
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/10406\",\n
260
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/20406\",\n
261
- \ \"GamerScore\": 75665,\n \"IsOnline\": false,\n \"PresenceInfo\":
262
- {\n \"LastOnline\": 1357946640,\n \"OnlineStatus\": \"Last
263
- seen 12 hours ago playing Darksiders II\",\n \"Game\": {\n \"Title\":
264
- \"Darksiders II\",\n \"Id\": 1414596758,\n \"Url\":
265
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414596758\"\n }\n
266
- \ }\n },\n {\n \"Gamertag\": \"LA SuP3R Dr4G0n\",\n
267
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11039\",\n
268
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21039\",\n
269
- \ \"GamerScore\": 7535,\n \"IsOnline\": false,\n \"PresenceInfo\":
270
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
271
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
272
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
273
- \ }\n }\n },\n {\n \"Gamertag\": \"loopylewie\",\n
274
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/1000c\",\n
275
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/2000c\",\n
276
- \ \"GamerScore\": 2565,\n \"IsOnline\": false,\n \"PresenceInfo\":
277
- {\n \"LastOnline\": 1356358262,\n \"OnlineStatus\": \"Last
278
- seen 12\\/24\\/2012 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
279
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
280
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
281
- \ }\n },\n {\n \"Gamertag\": \"M5T4R 97\",\n \"AvatarSmall\":
282
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10007\",\n
283
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20007\",\n
284
- \ \"GamerScore\": 5005,\n \"IsOnline\": false,\n \"PresenceInfo\":
285
- {\n \"LastOnline\": 1357924332,\n \"OnlineStatus\": \"Last
286
- seen 18 hours ago playing NBA 2K13\",\n \"Game\": {\n \"Title\":
287
- \"NBA 2K13\",\n \"Id\": 1414793378,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414793378\"\n
288
- \ }\n }\n },\n {\n \"Gamertag\": \"Maceration\",\n
289
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Maceration\\/avatarpic-s.png\",\n
290
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Maceration\\/avatarpic-l.png\",\n
291
- \ \"GamerScore\": 50174,\n \"IsOnline\": true,\n \"PresenceInfo\":
292
- {\n \"LastOnline\": 1357986046,\n \"OnlineStatus\": \"Online
293
- playing Far Cry\\u00ae 3\",\n \"Game\": {\n \"Title\":
294
- \"Far Cry\\u00ae 3\",\n \"Id\": 1431505036,\n \"Url\":
295
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505036\"\n }\n
296
- \ }\n },\n {\n \"Gamertag\": \"ManBearPig 1983\",\n
297
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/1000c\",\n
298
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.584111f7\\/tile\\/0\\/2000c\",\n
299
- \ \"GamerScore\": 40820,\n \"IsOnline\": true,\n \"PresenceInfo\":
300
- {\n \"LastOnline\": 1357990149,\n \"OnlineStatus\": \"Online
301
- playing Far Cry\\u00ae 3\",\n \"Game\": {\n \"Title\":
302
- \"Far Cry\\u00ae 3\",\n \"Id\": 1431505036,\n \"Url\":
303
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505036\"\n }\n
304
- \ }\n },\n {\n \"Gamertag\": \"ManyRanger048\",\n \"AvatarSmall\":
305
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/10000\",\n
306
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/20000\",\n
307
- \ \"GamerScore\": 2143,\n \"IsOnline\": true,\n \"PresenceInfo\":
308
- {\n \"LastOnline\": 1357990594,\n \"OnlineStatus\": \"Online
309
- playing Sky\",\n \"Game\": {\n \"Title\": \"Sky\",\n \"Id\":
310
- 1481115745,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1481115745\"\n
311
- \ }\n }\n },\n {\n \"Gamertag\": \"MewtX\",\n
312
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/MewtX\\/avatarpic-s.png\",\n
313
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/MewtX\\/avatarpic-l.png\",\n
314
- \ \"GamerScore\": 31091,\n \"IsOnline\": false,\n \"PresenceInfo\":
315
- {\n \"LastOnline\": 1357579700,\n \"OnlineStatus\": \"Last
316
- seen 1\\/7\\/2013 playing Xbox SmartGlass\",\n \"Game\": {\n \"Title\":
317
- \"Xbox SmartGlass\",\n \"Id\": 1297290368,\n \"Url\":
318
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297290368\"\n }\n
319
- \ }\n },\n {\n \"Gamertag\": \"MinTheMerciless\",\n
320
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.5841086e\\/tile\\/0\\/18005\",\n
321
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.5841086e\\/tile\\/0\\/28005\",\n
322
- \ \"GamerScore\": 10330,\n \"IsOnline\": false,\n \"PresenceInfo\":
323
- {\n \"LastOnline\": 1354144130,\n \"OnlineStatus\": \"Last
324
- seen 11\\/28\\/2012 playing SUPER STREETFIGHTER IV\",\n \"Game\":
325
- {\n \"Title\": \"SUPER STREETFIGHTER IV\",\n \"Id\":
326
- 1128466428,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1128466428\"\n
327
- \ }\n }\n },\n {\n \"Gamertag\": \"mrdhugha\",\n
328
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/mrdhugha\\/avatarpic-s.png\",\n
329
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/mrdhugha\\/avatarpic-l.png\",\n
330
- \ \"GamerScore\": 6579,\n \"IsOnline\": false,\n \"PresenceInfo\":
331
- {\n \"LastOnline\": 1357949884,\n \"OnlineStatus\": \"Last
332
- seen 11 hours ago playing FIFA 13\",\n \"Game\": {\n \"Title\":
333
- \"FIFA 13\",\n \"Id\": 1161890200,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161890200\"\n
334
- \ }\n }\n },\n {\n \"Gamertag\": \"Ms Elderflower\",\n
335
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Ms%20Elderflower\\/avatarpic-s.png\",\n
336
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Ms%20Elderflower\\/avatarpic-l.png\",\n
337
- \ \"GamerScore\": 14208,\n \"IsOnline\": false,\n \"PresenceInfo\":
338
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
339
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
340
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
341
- \ }\n }\n },\n {\n \"Gamertag\": \"Obsidien23\",\n
342
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Obsidien23\\/avatarpic-s.png\",\n
343
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Obsidien23\\/avatarpic-l.png\",\n
344
- \ \"GamerScore\": 10975,\n \"IsOnline\": false,\n \"PresenceInfo\":
345
- {\n \"LastOnline\": 1357954814,\n \"OnlineStatus\": \"Last
346
- seen 10 hours ago playing YouTube\",\n \"Game\": {\n \"Title\":
347
- \"YouTube\",\n \"Id\": 1110837201,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1110837201\"\n
348
- \ }\n }\n },\n {\n \"Gamertag\": \"ORANEJUICE99\",\n
349
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10005\",\n
350
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20005\",\n
351
- \ \"GamerScore\": 480,\n \"IsOnline\": false,\n \"PresenceInfo\":
352
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
353
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
354
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
355
- \ }\n }\n },\n {\n \"Gamertag\": \"OSIRlS\",\n
356
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4d5307e6\\/tile\\/0\\/18001\",\n
357
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.4d5307e6\\/tile\\/0\\/28001\",\n
358
- \ \"GamerScore\": 14365,\n \"IsOnline\": false,\n \"PresenceInfo\":
359
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
360
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
361
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
362
- \ }\n }\n },\n {\n \"Gamertag\": \"plattedbumhair\",\n
363
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/10000\",\n
364
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/\\/global\\/t.FFFE07D1\\/tile\\/0\\/20000\",\n
365
- \ \"GamerScore\": 960,\n \"IsOnline\": false,\n \"PresenceInfo\":
366
- {\n \"LastOnline\": 1355064340,\n \"OnlineStatus\": \"Last
367
- seen 12\\/9\\/2012 playing NHL\\u00ae 13\",\n \"Game\": {\n \"Title\":
368
- \"NHL\\u00ae 13\",\n \"Id\": 1161890203,\n \"Url\":
369
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1161890203\"\n }\n
370
- \ }\n },\n {\n \"Gamertag\": \"Pollomaverick\",\n \"AvatarSmall\":
371
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Pollomaverick\\/avatarpic-s.png\",\n
372
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Pollomaverick\\/avatarpic-l.png\",\n
373
- \ \"GamerScore\": 8455,\n \"IsOnline\": false,\n \"PresenceInfo\":
374
- {\n \"LastOnline\": 1357952885,\n \"OnlineStatus\": \"Last
375
- seen 10 hours ago playing SUPER STREETFIGHTER IV\",\n \"Game\": {\n
376
- \ \"Title\": \"SUPER STREETFIGHTER IV\",\n \"Id\": 1128466428,\n
377
- \ \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1128466428\"\n
378
- \ }\n }\n },\n {\n \"Gamertag\": \"RentokillXtreme\",\n
379
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RentokillXtreme\\/avatarpic-s.png\",\n
380
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RentokillXtreme\\/avatarpic-l.png\",\n
381
- \ \"GamerScore\": 875,\n \"IsOnline\": false,\n \"PresenceInfo\":
382
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
383
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
384
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
385
- \ }\n }\n },\n {\n \"Gamertag\": \"RobBucksVag\",\n
386
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RobBucksVag\\/avatarpic-s.png\",\n
387
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RobBucksVag\\/avatarpic-l.png\",\n
388
- \ \"GamerScore\": 5215,\n \"IsOnline\": false,\n \"PresenceInfo\":
389
- {\n \"LastOnline\": 1357955431,\n \"OnlineStatus\": \"Last
390
- seen 10 hours ago playing Halo 4\",\n \"Game\": {\n \"Title\":
391
- \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
392
- \ }\n }\n },\n {\n \"Gamertag\": \"RYL0N\",\n
393
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RYL0N\\/avatarpic-s.png\",\n
394
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/RYL0N\\/avatarpic-l.png\",\n
395
- \ \"GamerScore\": 5140,\n \"IsOnline\": false,\n \"PresenceInfo\":
396
- {\n \"LastOnline\": 1357867043,\n \"OnlineStatus\": \"Last
397
- seen 1\\/11\\/2013 playing AC Revelations\",\n \"Game\": {\n \"Title\":
398
- \"AC Revelations\",\n \"Id\": 1431505017,\n \"Url\":
399
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1431505017\"\n }\n
400
- \ }\n },\n {\n \"Gamertag\": \"shinyhappydan\",\n \"AvatarSmall\":
401
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/shinyhappydan\\/avatarpic-s.png\",\n
402
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/shinyhappydan\\/avatarpic-l.png\",\n
403
- \ \"GamerScore\": 3420,\n \"IsOnline\": false,\n \"PresenceInfo\":
404
- {\n \"LastOnline\": 1357989587,\n \"OnlineStatus\": \"Last
405
- seen 35 minutes ago playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
406
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
407
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
408
- \ }\n },\n {\n \"Gamertag\": \"skolymenos7\",\n \"AvatarSmall\":
409
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/skolymenos7\\/avatarpic-s.png\",\n
410
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/skolymenos7\\/avatarpic-l.png\",\n
411
- \ \"GamerScore\": 8050,\n \"IsOnline\": false,\n \"PresenceInfo\":
412
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
413
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
414
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
415
- \ }\n }\n },\n {\n \"Gamertag\": \"SNaKeW0LF\",\n
416
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10002\",\n
417
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20002\",\n
418
- \ \"GamerScore\": 16640,\n \"IsOnline\": false,\n \"PresenceInfo\":
419
- {\n \"LastOnline\": 1357962102,\n \"OnlineStatus\": \"Last
420
- seen 8 hours ago playing WWE '13\",\n \"Game\": {\n \"Title\":
421
- \"WWE '13\",\n \"Id\": 1414596788,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1414596788\"\n
422
- \ }\n }\n },\n {\n \"Gamertag\": \"StereoTaoTzu\",\n
423
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/StereoTaoTzu\\/avatarpic-s.png\",\n
424
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/StereoTaoTzu\\/avatarpic-l.png\",\n
425
- \ \"GamerScore\": 9264,\n \"IsOnline\": true,\n \"PresenceInfo\":
426
- {\n \"LastOnline\": 1357991391,\n \"OnlineStatus\": \"Online
427
- playing F1 Race Stars\\u2122\",\n \"Game\": {\n \"Title\":
428
- \"F1 Race Stars\\u2122\",\n \"Id\": 1129121865,\n \"Url\":
429
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1129121865\"\n }\n
430
- \ }\n },\n {\n \"Gamertag\": \"stewpinkila\",\n \"AvatarSmall\":
431
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10001\",\n
432
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20001\",\n
433
- \ \"GamerScore\": 660,\n \"IsOnline\": false,\n \"PresenceInfo\":
434
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
435
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
436
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
437
- \ }\n }\n },\n {\n \"Gamertag\": \"STUCKIE
438
- UANK\",\n \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/STUCKIE%20UANK\\/avatarpic-s.png\",\n
439
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/STUCKIE%20UANK\\/avatarpic-l.png\",\n
440
- \ \"GamerScore\": 355,\n \"IsOnline\": false,\n \"PresenceInfo\":
441
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
442
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
443
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
444
- \ }\n }\n },\n {\n \"Gamertag\": \"Super Kayven\",\n
445
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Super%20Kayven\\/avatarpic-s.png\",\n
446
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/Super%20Kayven\\/avatarpic-l.png\",\n
447
- \ \"GamerScore\": 8375,\n \"IsOnline\": false,\n \"PresenceInfo\":
448
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
449
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
450
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
451
- \ }\n }\n },\n {\n \"Gamertag\": \"TechEgg\",\n
452
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10006\",\n
453
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20006\",\n
454
- \ \"GamerScore\": 2310,\n \"IsOnline\": false,\n \"PresenceInfo\":
455
- {\n \"LastOnline\": 1356561055,\n \"OnlineStatus\": \"Last
456
- seen 12\\/26\\/2012 playing Xbox Dashboard\",\n \"Game\": {\n \"Title\":
457
- \"Xbox Dashboard\",\n \"Id\": 4294838225,\n \"Url\":
458
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/4294838225\"\n }\n
459
- \ }\n },\n {\n \"Gamertag\": \"TheClocKwize\",\n \"AvatarSmall\":
460
- \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/10002\",\n
461
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/20002\",\n
462
- \ \"GamerScore\": 925,\n \"IsOnline\": false,\n \"PresenceInfo\":
463
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
464
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
465
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
466
- \ }\n }\n },\n {\n \"Gamertag\": \"tod 49\",\n
467
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/tod%2049\\/avatarpic-s.png\",\n
468
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/tod%2049\\/avatarpic-l.png\",\n
469
- \ \"GamerScore\": 10910,\n \"IsOnline\": false,\n \"PresenceInfo\":
470
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
471
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
472
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
473
- \ }\n }\n },\n {\n \"Gamertag\": \"U eNGAGE\",\n
474
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11013\",\n
475
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21013\",\n
476
- \ \"GamerScore\": 4445,\n \"IsOnline\": true,\n \"PresenceInfo\":
477
- {\n \"LastOnline\": 1357991609,\n \"OnlineStatus\": \"Online
478
- playing COD: Black Ops II\",\n \"Game\": {\n \"Title\":
479
- \"COD: Black Ops II\",\n \"Id\": 1096157379,\n \"Url\":
480
- \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1096157379\"\n }\n
481
- \ }\n },\n {\n \"Gamertag\": \"UNIQUE SWITCHER\",\n
482
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/11014\",\n
483
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/global\\/t.fffe07d1\\/tile\\/0\\/21014\",\n
484
- \ \"GamerScore\": 10954,\n \"IsOnline\": false,\n \"PresenceInfo\":
485
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
486
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
487
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
488
- \ }\n }\n },\n {\n \"Gamertag\": \"UZI1\",\n
489
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/UZI1\\/avatarpic-s.png\",\n
490
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/UZI1\\/avatarpic-l.png\",\n
491
- \ \"GamerScore\": 6700,\n \"IsOnline\": false,\n \"PresenceInfo\":
492
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
493
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
494
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
495
- \ }\n }\n },\n {\n \"Gamertag\": \"xs wardy\",\n
496
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/xs%20wardy\\/avatarpic-s.png\",\n
497
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/xs%20wardy\\/avatarpic-l.png\",\n
498
- \ \"GamerScore\": 18526,\n \"IsOnline\": false,\n \"PresenceInfo\":
499
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
500
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
501
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
502
- \ }\n }\n },\n {\n \"Gamertag\": \"ZS mattltm\",\n
503
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZS%20mattltm\\/avatarpic-s.png\",\n
504
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZS%20mattltm\\/avatarpic-l.png\",\n
505
- \ \"GamerScore\": 1800,\n \"IsOnline\": false,\n \"PresenceInfo\":
506
- {\n \"LastOnline\": 1356901416,\n \"OnlineStatus\": \"Last
507
- seen 12\\/30\\/2012 playing Halo 4\",\n \"Game\": {\n \"Title\":
508
- \"Halo 4\",\n \"Id\": 1297287449,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/1297287449\"\n
509
- \ }\n }\n },\n {\n \"Gamertag\": \"ZubK\",\n
510
- \ \"AvatarSmall\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZubK\\/avatarpic-s.png\",\n
511
- \ \"AvatarLarge\": \"https:\\/\\/avatar-ssl.xboxlive.com\\/avatar\\/ZubK\\/avatarpic-l.png\",\n
512
- \ \"GamerScore\": 6380,\n \"IsOnline\": false,\n \"PresenceInfo\":
513
- {\n \"LastOnline\": 1041379200,\n \"OnlineStatus\": \"Offline\",\n
514
- \ \"Game\": {\n \"Title\": \"Unknown\",\n \"Id\":
515
- 0,\n \"Url\": \"http:\\/\\/marketplace.xbox.com\\/en-US\\/Title\\/0\"\n
516
- \ }\n }\n }\n ]\n },\n \"Stat\": \"ok\",\n \"In\":
517
- 4.073,\n \"Authed\": \"false\",\n \"AuthedAs\": null\n}"
518
- http_version: '1.1'
519
- recorded_at: Sat, 12 Jan 2013 11:55:34 GMT
520
- recorded_with: VCR 2.3.0