ultron 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -1
  3. data/.rspec +1 -1
  4. data/.travis.yml +7 -0
  5. data/{LICENSE.txt → LICENSE.md} +2 -2
  6. data/README.md +19 -21
  7. data/Rakefile +1 -1
  8. data/config/params.yaml +0 -0
  9. data/config/ultron.yaml +2 -0
  10. data/examples/links.rb +0 -0
  11. data/lib/ultron.rb +29 -4
  12. data/lib/ultron/api/character.rb +19 -0
  13. data/lib/ultron/api/characters.rb +14 -0
  14. data/lib/ultron/api/comic.rb +15 -0
  15. data/lib/ultron/api/comics.rb +14 -0
  16. data/lib/ultron/api/creator.rb +19 -0
  17. data/lib/ultron/api/creators.rb +14 -0
  18. data/lib/ultron/api/entities.rb +45 -0
  19. data/lib/ultron/api/entity.rb +51 -0
  20. data/lib/ultron/api/event.rb +15 -0
  21. data/lib/ultron/api/events.rb +14 -0
  22. data/lib/ultron/api/series.rb +23 -0
  23. data/lib/ultron/api/serieses.rb +16 -0
  24. data/lib/ultron/api/stories.rb +14 -0
  25. data/lib/ultron/api/story.rb +15 -0
  26. data/lib/ultron/config.rb +35 -0
  27. data/lib/ultron/connection.rb +41 -0
  28. data/lib/ultron/helpers.rb +25 -0
  29. data/lib/ultron/version.rb +1 -1
  30. data/spec/cassettes/Ultron_API_Character/should_have_a_series_set.yml +88 -0
  31. data/spec/cassettes/Ultron_API_Character/should_have_an_events_set.yml +32 -0
  32. data/spec/cassettes/Ultron_API_Character/should_have_the_correct_name.yml +88 -0
  33. data/spec/cassettes/Ultron_API_Character/should_have_the_correct_sets/events.yml +32 -0
  34. data/spec/cassettes/Ultron_API_Character/should_not_have_any_events.yml +32 -0
  35. data/spec/cassettes/Ultron_API_CharacterSet/should_have_the_correct_first_character.yml +1616 -0
  36. data/spec/cassettes/Ultron_API_Characters/characters_filtered_by_comic/should_have_the_correct_first_character.yml +1616 -0
  37. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_comic.yml +1862 -0
  38. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_event.yml +3876 -0
  39. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_series.yml +743 -0
  40. data/spec/cassettes/Ultron_API_Characters/generate_filtered_lists_of_characters/by_story.yml +345 -0
  41. data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_id.yml +114 -0
  42. data/spec/cassettes/Ultron_API_Characters/get_a_character_by_name/should_have_the_correct_name.yml +114 -0
  43. data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_id.yml +99 -0
  44. data/spec/cassettes/Ultron_API_Characters/get_a_character_with_a_space_in_their_name/should_have_the_correct_name.yml +99 -0
  45. data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_id.yml +644 -0
  46. data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_name.yml +644 -0
  47. data/spec/cassettes/Ultron_API_Characters/get_the_first_character_off_the_list/should_have_the_correct_resourceURI.yml +644 -0
  48. data/spec/cassettes/Ultron_API_Characters/parameterize_the_request/should_let_us_set_multiple_parameters.yml +1595 -0
  49. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_comic.yml +2737 -0
  50. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_event.yml +7345 -0
  51. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_series.yml +743 -0
  52. data/spec/cassettes/Ultron_API_Characters/should_generate_a_list_of_characters_filtered_by_story.yml +231 -0
  53. data/spec/cassettes/Ultron_API_Characters/should_have_genarate_a_list_of_characters_filtered_by_comic.yml +1616 -0
  54. data/spec/cassettes/Ultron_API_Characters/should_have_the_correct_first_character.yml +1616 -0
  55. data/spec/cassettes/Ultron_API_Characters/should_not_generate_a_list_of_characters_filtered_by_creator.yml +31 -0
  56. data/spec/cassettes/Ultron_API_Characters/should_not_generate_lists_of_characters/filtered_by_creator.yml +31 -0
  57. data/spec/cassettes/Ultron_API_Comic/should_have_a_list_of_characters.yml +46 -0
  58. data/spec/cassettes/Ultron_API_Comic/should_have_openstruct_method-style_attribute_accessors.yml +46 -0
  59. data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_title.yml +46 -0
  60. data/spec/cassettes/Ultron_API_Comic/should_have_the_correct_year.yml +46 -0
  61. data/spec/cassettes/Ultron_API_ComicSet/should_have_the_correct_first_comic.yml +2013 -0
  62. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_character.yml +2059 -0
  63. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_creator.yml +2177 -0
  64. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_event.yml +1701 -0
  65. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_series.yml +123 -0
  66. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_stories.yml +499 -0
  67. data/spec/cassettes/Ultron_API_Comics/generate_filtered_lists_of_comics/by_story.yml +577 -0
  68. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_id.yml +1039 -0
  69. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_name.yml +946 -0
  70. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_resourceURI.yml +1039 -0
  71. data/spec/cassettes/Ultron_API_Comics/get_the_first_comic_off_the_list/should_have_the_correct_title.yml +1039 -0
  72. data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_dateRange.yml +1613 -0
  73. data/spec/cassettes/Ultron_API_Comics/parameterize_the_request/should_let_us_set_a_limit.yml +96 -0
  74. data/spec/cassettes/Ultron_API_Comics/should_generate_a_list_of_comics_filtered_by_character.yml +3955 -0
  75. data/spec/cassettes/Ultron_API_Comics/should_have_the_correct_first_comic.yml +2012 -0
  76. data/spec/cassettes/Ultron_API_ComicsSet/should_have_the_correct_first_comic.yml +2013 -0
  77. data/spec/cassettes/Ultron_API_Creator/it_should_have_the_correct_sets/comics.yml +2029 -0
  78. data/spec/cassettes/Ultron_API_Creator/should_have_a_comics_set.yml +2022 -0
  79. data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_comic.yml +2029 -0
  80. data/spec/cassettes/Ultron_API_Creator/should_have_the_correct_name.yml +243 -0
  81. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_comic.yml +1205 -0
  82. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_event.yml +2778 -0
  83. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_series.yml +4555 -0
  84. data/spec/cassettes/Ultron_API_Creators/generate_filtered_lists_of_creators/by_story.yml +1253 -0
  85. data/spec/cassettes/Ultron_API_Creators/get_a_creator_by_name/should_return_the_correct_creator.yml +30 -0
  86. data/spec/cassettes/Ultron_API_Creators/get_the_fourth_creator_off_the_list/should_have_the_right_name.yml +1205 -0
  87. data/spec/cassettes/Ultron_API_Creators/get_the_second_creator_off_the_list/should_have_the_right_name.yml +384 -0
  88. data/spec/cassettes/Ultron_API_Creators/should_have_the_correct_first_comic.yml +32 -0
  89. data/spec/cassettes/Ultron_API_Creators/should_not_generate_a_list_of_creators_filtered_by_character.yml +31 -0
  90. data/spec/cassettes/Ultron_API_Creators/should_not_generate_lists_of_creators/filtered_by_character.yml +31 -0
  91. data/spec/cassettes/Ultron_API_Event/should_have_a_list_of_characters.yml +195 -0
  92. data/spec/cassettes/Ultron_API_Event/should_have_the_correct_first_character.yml +195 -0
  93. data/spec/cassettes/Ultron_API_Event/should_have_the_correct_title.yml +108 -0
  94. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_character.yml +5161 -0
  95. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_comic.yml +363 -0
  96. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_creator.yml +9257 -0
  97. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_series.yml +240 -0
  98. data/spec/cassettes/Ultron_API_Events/generate_filtered_lists_of_events/by_story.yml +375 -0
  99. data/spec/cassettes/Ultron_API_Events/get_the_second_event_off_the_list/should_have_the_right_name.yml +4762 -0
  100. data/spec/cassettes/Ultron_API_Series/should_have_the_correct_sets/not_series.yml +40 -0
  101. data/spec/cassettes/Ultron_API_Series/should_have_the_correct_title.yml +40 -0
  102. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_character.yml +3618 -0
  103. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_comic.yml +31 -0
  104. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_creator.yml +1104 -0
  105. data/spec/cassettes/Ultron_API_Serieses/generate_filtered_lists_of_serieses/by_event.yml +591 -0
  106. data/spec/cassettes/Ultron_API_Serieses/get_the_third_event_off_the_list/should_have_the_right_name.yml +1780 -0
  107. data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_comic.yml +31 -0
  108. data/spec/cassettes/Ultron_API_Serieses/should_not_generate_lists_of_series/filtered_by_story.yml +31 -0
  109. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_character.yml +342 -0
  110. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_comic.yml +110 -0
  111. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_creator.yml +1041 -0
  112. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_event.yml +846 -0
  113. data/spec/cassettes/Ultron_API_Stories/generate_filtered_lists_of_stories/by_series.yml +143 -0
  114. data/spec/cassettes/Ultron_API_Stories/get_the_fourth_story_off_the_list/should_have_the_right_name.yml +686 -0
  115. data/spec/cassettes/Ultron_API_Stories/get_the_second_story_off_the_list/should_have_the_right_name.yml +686 -0
  116. data/spec/cassettes/Ultron_API_Story/should_have_the_correct_title.yml +40 -0
  117. data/spec/cassettes/Ultron_Connection/should_get_a_200.yml +559 -0
  118. data/spec/spec_helper.rb +3 -0
  119. data/spec/support/vcr_setup.rb +17 -0
  120. data/spec/ultron/api/character_spec.rb +50 -0
  121. data/spec/ultron/api/comic_spec.rb +55 -0
  122. data/spec/ultron/api/creator_spec.rb +50 -0
  123. data/spec/ultron/api/event_spec.rb +50 -0
  124. data/spec/ultron/api/filtered_sets/characters_filtered_spec.rb +53 -0
  125. data/spec/ultron/api/filtered_sets/comics_filtered_spec.rb +51 -0
  126. data/spec/ultron/api/filtered_sets/creators_filtered_spec.rb +51 -0
  127. data/spec/ultron/api/filtered_sets/events_filtered_spec.rb +51 -0
  128. data/spec/ultron/api/filtered_sets/series_filtered_spec.rb +50 -0
  129. data/spec/ultron/api/filtered_sets/stories_filtered_spec.rb +52 -0
  130. data/spec/ultron/api/series_spec.rb +46 -0
  131. data/spec/ultron/api/sets/characters_spec.rb +71 -0
  132. data/spec/ultron/api/sets/comics_spec.rb +46 -0
  133. data/spec/ultron/api/sets/creators_spec.rb +29 -0
  134. data/spec/ultron/api/sets/events_spec.rb +26 -0
  135. data/spec/ultron/api/sets/serieses_spec.rb +26 -0
  136. data/spec/ultron/api/sets/stories_spec.rb +26 -0
  137. data/spec/ultron/api/story_spec.rb +46 -0
  138. data/spec/ultron/auth_spec.rb +13 -0
  139. data/spec/ultron/config_spec.rb +16 -0
  140. data/spec/ultron/connection_spec.rb +33 -0
  141. data/spec/ultron/helpers_spec.rb +11 -0
  142. data/ultron.gemspec +16 -11
  143. metadata +346 -50
  144. data/lib/ultron/characters.rb +0 -9
  145. data/spec/ultron/characters_spec.rb +0 -12
@@ -0,0 +1,345 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://gateway.marvel.com/v1/public/stories/44081/characters?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ Etag:
18
+ - ffe8202ed2fcef2710db75621d990a7692335dca
19
+ Content-Type:
20
+ - application/json
21
+ Content-Length:
22
+ - '10136'
23
+ Date:
24
+ - Tue, 11 Feb 2014 09:41:54 GMT
25
+ Connection:
26
+ - keep-alive
27
+ body:
28
+ encoding: ASCII-8BIT
29
+ string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"ffe8202ed2fcef2710db75621d990a7692335dca\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009726,\"name\":\"X-Men\",\"description\":\"Feared
30
+ and hated by humans because they're different, the X-Men are heroic mutants,
31
+ individuals born with special powers who've sworn to use their gifts to protect
32
+ mutants as well as humans.\",\"modified\":\"2013-02-01T13:29:54-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/03/510c08f345938\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"comics\":{\"available\":2528,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/43488\",\"name\":\"A+X
33
+ (2012) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17701\",\"name\":\"Age
34
+ of Apocalypse: The Chosen (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37996\",\"name\":\"Age
35
+ Of X: Alpha (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37972\",\"name\":\"Age
36
+ of X: Alpha (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37973\",\"name\":\"Age
37
+ of X: Alpha (2010) #1 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39284\",\"name\":\"Age
38
+ of X: Alpha (2010) #1 (Conrad 2nd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38895\",\"name\":\"Age
39
+ of X: Alpha (2010) #1 (2nd Printing Variant )\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23253\",\"name\":\"Amazing
40
+ Adventures (1970) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34442\",\"name\":\"Amazing
41
+ Spider-Man (1999) #639 (SKETCH VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35509\",\"name\":\"Amazing
42
+ Spider-Man (1999) #673\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17731\",\"name\":\"Amazing
43
+ X-Men (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17732\",\"name\":\"Amazing
44
+ X-Men (1995) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17733\",\"name\":\"Amazing
45
+ X-Men (1995) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17734\",\"name\":\"Amazing
46
+ X-Men (1995) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/660\",\"name\":\"Astonishing
47
+ X-Men (2004) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17735\",\"name\":\"Astonishing
48
+ X-Men (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/662\",\"name\":\"Astonishing
49
+ X-Men (2004) #1 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/722\",\"name\":\"Astonishing
50
+ X-Men (2004) #1 (Director's Cut)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/723\",\"name\":\"Astonishing
51
+ X-Men (2004) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17736\",\"name\":\"Astonishing
52
+ X-Men (1995) #2\"}],\"returned\":20},\"series\":{\"available\":468,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/16450\",\"name\":\"A+X
53
+ (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3614\",\"name\":\"Age
54
+ of Apocalypse: The Chosen (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13615\",\"name\":\"Age
55
+ Of X: Alpha (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13603\",\"name\":\"Age
56
+ of X: Alpha (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6666\",\"name\":\"Amazing
57
+ Adventures (1970 - 1976)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
58
+ Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3618\",\"name\":\"Amazing
59
+ X-Men (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3619\",\"name\":\"Astonishing
60
+ X-Men (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
61
+ X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
62
+ X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14616\",\"name\":\"Astonishing
63
+ X-Men MGC (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/992\",\"name\":\"Astonishing
64
+ X-Men Saga (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1464\",\"name\":\"Astonishing
65
+ X-Men Vol. 1 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1298\",\"name\":\"Astonishing
66
+ X-Men Vol. 1: Gifted (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1422\",\"name\":\"Astonishing
67
+ X-Men Vol. 2: Dangerous (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1485\",\"name\":\"Astonishing
68
+ X-Men Vol. 3: Torn (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5055\",\"name\":\"Astonishing
69
+ X-Men Vol. 4: Unstoppable (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9381\",\"name\":\"Astonishing
70
+ X-Men Vol. 6: Xenogenetic (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5998\",\"name\":\"Astonishing
71
+ X-Men: Ghost Boxes (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9781\",\"name\":\"Astonishing
72
+ X-Men: Xenogenesis (2010)\"}],\"returned\":20},\"stories\":{\"available\":3778,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/472\",\"name\":\"Interior
73
+ #472\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/478\",\"name\":\"Interior
74
+ #478\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/492\",\"name\":\"Interior
75
+ #492\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/495\",\"name\":\"Interior
76
+ #495\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/501\",\"name\":\"Interior
77
+ #501\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/503\",\"name\":\"Interior
78
+ #503\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/515\",\"name\":\"Interior
79
+ #515\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/595\",\"name\":\"4
80
+ of 4 - Heroes and Villains\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/603\",\"name\":\"Interior
81
+ #603\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/609\",\"name\":\"Interior
82
+ #609\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/611\",\"name\":\"Interior
83
+ #611\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/613\",\"name\":\"Interior
84
+ #613\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/615\",\"name\":\"Interior
85
+ #615\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/617\",\"name\":\"Interior
86
+ #617\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/619\",\"name\":\"Interior
87
+ #619\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/621\",\"name\":\"Interior
88
+ #621\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/623\",\"name\":\"\\\"HEROES
89
+ AND VILLIANS\\\" PART 1 (OF 4) Brand-new story arc! The Brotherhood of Mutants
90
+ is back with Nocturne from the Exiles, and a\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/625\",\"name\":\"\\\"HEROES
91
+ AND VILLIANS\\\" PART 1 (OF 4) Brand-new story arc! The Brotherhood of Mutants
92
+ is back with Nocturne from the Exiles, and a\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/627\",\"name\":\"\\\"HEROES
93
+ AND VILLAINS\\\" PART 3 (OF 4) The Xavier Institute is under attack by The
94
+ New Brotherhood of Mutants! With the X-Men down \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/629\",\"name\":\"1
95
+ of 1 - Holiday Issue\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":34,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
96
+ of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/227\",\"name\":\"Age
97
+ of Apocalypse\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
98
+ of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
99
+ Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
100
+ VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
101
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
102
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
103
+ Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/240\",\"name\":\"Days
104
+ of Future Present\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
105
+ of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/246\",\"name\":\"Evolutionary
106
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
107
+ of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
108
+ Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
109
+ Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
110
+ of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
111
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/32\",\"name\":\"Kings
112
+ of Pain\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
113
+ Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
114
+ CompleX\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009726/x-men?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/X-Men?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
115
+ http_version:
116
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
117
+ - request:
118
+ method: get
119
+ uri: http://gateway.marvel.com/v1/public/characters/1009726?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
120
+ body:
121
+ encoding: US-ASCII
122
+ string: ''
123
+ headers:
124
+ Accept:
125
+ - application/json
126
+ response:
127
+ status:
128
+ code: 200
129
+ message: OK
130
+ headers:
131
+ Etag:
132
+ - ffe8202ed2fcef2710db75621d990a7692335dca
133
+ Content-Type:
134
+ - application/json
135
+ Content-Length:
136
+ - '10136'
137
+ Date:
138
+ - Tue, 11 Feb 2014 09:41:49 GMT
139
+ Connection:
140
+ - keep-alive
141
+ body:
142
+ encoding: ASCII-8BIT
143
+ string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"ffe8202ed2fcef2710db75621d990a7692335dca\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009726,\"name\":\"X-Men\",\"description\":\"Feared
144
+ and hated by humans because they're different, the X-Men are heroic mutants,
145
+ individuals born with special powers who've sworn to use their gifts to protect
146
+ mutants as well as humans.\",\"modified\":\"2013-02-01T13:29:54-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/03/510c08f345938\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"comics\":{\"available\":2528,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/43488\",\"name\":\"A+X
147
+ (2012) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17701\",\"name\":\"Age
148
+ of Apocalypse: The Chosen (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37996\",\"name\":\"Age
149
+ Of X: Alpha (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37972\",\"name\":\"Age
150
+ of X: Alpha (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37973\",\"name\":\"Age
151
+ of X: Alpha (2010) #1 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39284\",\"name\":\"Age
152
+ of X: Alpha (2010) #1 (Conrad 2nd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38895\",\"name\":\"Age
153
+ of X: Alpha (2010) #1 (2nd Printing Variant )\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23253\",\"name\":\"Amazing
154
+ Adventures (1970) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34442\",\"name\":\"Amazing
155
+ Spider-Man (1999) #639 (SKETCH VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35509\",\"name\":\"Amazing
156
+ Spider-Man (1999) #673\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17731\",\"name\":\"Amazing
157
+ X-Men (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17732\",\"name\":\"Amazing
158
+ X-Men (1995) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17733\",\"name\":\"Amazing
159
+ X-Men (1995) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17734\",\"name\":\"Amazing
160
+ X-Men (1995) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/660\",\"name\":\"Astonishing
161
+ X-Men (2004) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17735\",\"name\":\"Astonishing
162
+ X-Men (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/662\",\"name\":\"Astonishing
163
+ X-Men (2004) #1 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/722\",\"name\":\"Astonishing
164
+ X-Men (2004) #1 (Director's Cut)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/723\",\"name\":\"Astonishing
165
+ X-Men (2004) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17736\",\"name\":\"Astonishing
166
+ X-Men (1995) #2\"}],\"returned\":20},\"series\":{\"available\":468,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/16450\",\"name\":\"A+X
167
+ (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3614\",\"name\":\"Age
168
+ of Apocalypse: The Chosen (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13615\",\"name\":\"Age
169
+ Of X: Alpha (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13603\",\"name\":\"Age
170
+ of X: Alpha (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6666\",\"name\":\"Amazing
171
+ Adventures (1970 - 1976)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
172
+ Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3618\",\"name\":\"Amazing
173
+ X-Men (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3619\",\"name\":\"Astonishing
174
+ X-Men (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
175
+ X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
176
+ X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14616\",\"name\":\"Astonishing
177
+ X-Men MGC (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/992\",\"name\":\"Astonishing
178
+ X-Men Saga (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1464\",\"name\":\"Astonishing
179
+ X-Men Vol. 1 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1298\",\"name\":\"Astonishing
180
+ X-Men Vol. 1: Gifted (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1422\",\"name\":\"Astonishing
181
+ X-Men Vol. 2: Dangerous (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1485\",\"name\":\"Astonishing
182
+ X-Men Vol. 3: Torn (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5055\",\"name\":\"Astonishing
183
+ X-Men Vol. 4: Unstoppable (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9381\",\"name\":\"Astonishing
184
+ X-Men Vol. 6: Xenogenetic (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5998\",\"name\":\"Astonishing
185
+ X-Men: Ghost Boxes (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9781\",\"name\":\"Astonishing
186
+ X-Men: Xenogenesis (2010)\"}],\"returned\":20},\"stories\":{\"available\":3778,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/472\",\"name\":\"Interior
187
+ #472\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/478\",\"name\":\"Interior
188
+ #478\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/492\",\"name\":\"Interior
189
+ #492\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/495\",\"name\":\"Interior
190
+ #495\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/501\",\"name\":\"Interior
191
+ #501\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/503\",\"name\":\"Interior
192
+ #503\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/515\",\"name\":\"Interior
193
+ #515\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/595\",\"name\":\"4
194
+ of 4 - Heroes and Villains\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/603\",\"name\":\"Interior
195
+ #603\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/609\",\"name\":\"Interior
196
+ #609\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/611\",\"name\":\"Interior
197
+ #611\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/613\",\"name\":\"Interior
198
+ #613\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/615\",\"name\":\"Interior
199
+ #615\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/617\",\"name\":\"Interior
200
+ #617\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/619\",\"name\":\"Interior
201
+ #619\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/621\",\"name\":\"Interior
202
+ #621\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/623\",\"name\":\"\\\"HEROES
203
+ AND VILLIANS\\\" PART 1 (OF 4) Brand-new story arc! The Brotherhood of Mutants
204
+ is back with Nocturne from the Exiles, and a\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/625\",\"name\":\"\\\"HEROES
205
+ AND VILLIANS\\\" PART 1 (OF 4) Brand-new story arc! The Brotherhood of Mutants
206
+ is back with Nocturne from the Exiles, and a\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/627\",\"name\":\"\\\"HEROES
207
+ AND VILLAINS\\\" PART 3 (OF 4) The Xavier Institute is under attack by The
208
+ New Brotherhood of Mutants! With the X-Men down \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/629\",\"name\":\"1
209
+ of 1 - Holiday Issue\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":34,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
210
+ of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/227\",\"name\":\"Age
211
+ of Apocalypse\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
212
+ of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
213
+ Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
214
+ VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
215
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
216
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
217
+ Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/240\",\"name\":\"Days
218
+ of Future Present\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
219
+ of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/246\",\"name\":\"Evolutionary
220
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
221
+ of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
222
+ Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
223
+ Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
224
+ of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
225
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/32\",\"name\":\"Kings
226
+ of Pain\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
227
+ Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
228
+ CompleX\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009726/x-men?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/X-Men?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
229
+ http_version:
230
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
231
+ - request:
232
+ method: get
233
+ uri: http://gateway.marvel.com/v1/public/characters/1009726?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&ts=1391894400
234
+ body:
235
+ encoding: US-ASCII
236
+ string: ''
237
+ headers:
238
+ Accept:
239
+ - application/json
240
+ response:
241
+ status:
242
+ code: 200
243
+ message: OK
244
+ headers:
245
+ Etag:
246
+ - ffe8202ed2fcef2710db75621d990a7692335dca
247
+ Content-Type:
248
+ - application/json
249
+ Content-Length:
250
+ - '10136'
251
+ Date:
252
+ - Tue, 11 Feb 2014 09:41:49 GMT
253
+ Connection:
254
+ - keep-alive
255
+ body:
256
+ encoding: ASCII-8BIT
257
+ string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"ffe8202ed2fcef2710db75621d990a7692335dca\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009726,\"name\":\"X-Men\",\"description\":\"Feared
258
+ and hated by humans because they're different, the X-Men are heroic mutants,
259
+ individuals born with special powers who've sworn to use their gifts to protect
260
+ mutants as well as humans.\",\"modified\":\"2013-02-01T13:29:54-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/8/03/510c08f345938\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009726\",\"comics\":{\"available\":2528,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/43488\",\"name\":\"A+X
261
+ (2012) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17701\",\"name\":\"Age
262
+ of Apocalypse: The Chosen (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37996\",\"name\":\"Age
263
+ Of X: Alpha (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37972\",\"name\":\"Age
264
+ of X: Alpha (2010) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/37973\",\"name\":\"Age
265
+ of X: Alpha (2010) #1 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/39284\",\"name\":\"Age
266
+ of X: Alpha (2010) #1 (Conrad 2nd Printing Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38895\",\"name\":\"Age
267
+ of X: Alpha (2010) #1 (2nd Printing Variant )\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/23253\",\"name\":\"Amazing
268
+ Adventures (1970) #17\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/34442\",\"name\":\"Amazing
269
+ Spider-Man (1999) #639 (SKETCH VARIANT)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35509\",\"name\":\"Amazing
270
+ Spider-Man (1999) #673\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17731\",\"name\":\"Amazing
271
+ X-Men (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17732\",\"name\":\"Amazing
272
+ X-Men (1995) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17733\",\"name\":\"Amazing
273
+ X-Men (1995) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17734\",\"name\":\"Amazing
274
+ X-Men (1995) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/660\",\"name\":\"Astonishing
275
+ X-Men (2004) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17735\",\"name\":\"Astonishing
276
+ X-Men (1995) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/662\",\"name\":\"Astonishing
277
+ X-Men (2004) #1 (Variant)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/722\",\"name\":\"Astonishing
278
+ X-Men (2004) #1 (Director's Cut)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/723\",\"name\":\"Astonishing
279
+ X-Men (2004) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17736\",\"name\":\"Astonishing
280
+ X-Men (1995) #2\"}],\"returned\":20},\"series\":{\"available\":468,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/16450\",\"name\":\"A+X
281
+ (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3614\",\"name\":\"Age
282
+ of Apocalypse: The Chosen (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13615\",\"name\":\"Age
283
+ Of X: Alpha (2010 - 2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13603\",\"name\":\"Age
284
+ of X: Alpha (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/6666\",\"name\":\"Amazing
285
+ Adventures (1970 - 1976)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
286
+ Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3618\",\"name\":\"Amazing
287
+ X-Men (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3619\",\"name\":\"Astonishing
288
+ X-Men (1995)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/744\",\"name\":\"Astonishing
289
+ X-Men (2004 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7576\",\"name\":\"Astonishing
290
+ X-Men by Joss Whedon & John Cassaday (2009 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/14616\",\"name\":\"Astonishing
291
+ X-Men MGC (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/992\",\"name\":\"Astonishing
292
+ X-Men Saga (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1464\",\"name\":\"Astonishing
293
+ X-Men Vol. 1 (2006)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1298\",\"name\":\"Astonishing
294
+ X-Men Vol. 1: Gifted (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1422\",\"name\":\"Astonishing
295
+ X-Men Vol. 2: Dangerous (2005)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1485\",\"name\":\"Astonishing
296
+ X-Men Vol. 3: Torn (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5055\",\"name\":\"Astonishing
297
+ X-Men Vol. 4: Unstoppable (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9381\",\"name\":\"Astonishing
298
+ X-Men Vol. 6: Xenogenetic (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/5998\",\"name\":\"Astonishing
299
+ X-Men: Ghost Boxes (2008)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9781\",\"name\":\"Astonishing
300
+ X-Men: Xenogenesis (2010)\"}],\"returned\":20},\"stories\":{\"available\":3778,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/472\",\"name\":\"Interior
301
+ #472\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/478\",\"name\":\"Interior
302
+ #478\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/492\",\"name\":\"Interior
303
+ #492\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/495\",\"name\":\"Interior
304
+ #495\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/501\",\"name\":\"Interior
305
+ #501\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/503\",\"name\":\"Interior
306
+ #503\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/515\",\"name\":\"Interior
307
+ #515\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/595\",\"name\":\"4
308
+ of 4 - Heroes and Villains\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/603\",\"name\":\"Interior
309
+ #603\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/609\",\"name\":\"Interior
310
+ #609\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/611\",\"name\":\"Interior
311
+ #611\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/613\",\"name\":\"Interior
312
+ #613\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/615\",\"name\":\"Interior
313
+ #615\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/617\",\"name\":\"Interior
314
+ #617\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/619\",\"name\":\"Interior
315
+ #619\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/621\",\"name\":\"Interior
316
+ #621\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/623\",\"name\":\"\\\"HEROES
317
+ AND VILLIANS\\\" PART 1 (OF 4) Brand-new story arc! The Brotherhood of Mutants
318
+ is back with Nocturne from the Exiles, and a\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/625\",\"name\":\"\\\"HEROES
319
+ AND VILLIANS\\\" PART 1 (OF 4) Brand-new story arc! The Brotherhood of Mutants
320
+ is back with Nocturne from the Exiles, and a\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/627\",\"name\":\"\\\"HEROES
321
+ AND VILLAINS\\\" PART 3 (OF 4) The Xavier Institute is under attack by The
322
+ New Brotherhood of Mutants! With the X-Men down \",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/629\",\"name\":\"1
323
+ of 1 - Holiday Issue\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":34,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009726/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
324
+ of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/227\",\"name\":\"Age
325
+ of Apocalypse\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
326
+ of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/233\",\"name\":\"Atlantis
327
+ Attacks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
328
+ VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
329
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/238\",\"name\":\"Civil
330
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
331
+ Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/240\",\"name\":\"Days
332
+ of Future Present\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/245\",\"name\":\"Enemy
333
+ of the State\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/246\",\"name\":\"Evolutionary
334
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
335
+ of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/249\",\"name\":\"Fatal
336
+ Attractions\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
337
+ Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
338
+ of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/252\",\"name\":\"Inferno\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
339
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/32\",\"name\":\"Kings
340
+ of Pain\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
341
+ Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/299\",\"name\":\"Messiah
342
+ CompleX\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009726/x-men?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/X-Men?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
343
+ http_version:
344
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
345
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,114 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://gateway.marvel.com/v1/public/characters?apikey=<PUBLIC_KEY>&hash=f8366b9e8b1ae6c7ed29d87062efffef&name=Hulk&ts=1391894400
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ Etag:
18
+ - a81da1024c59e0f1fae203da388374c77da99fd2
19
+ Content-Type:
20
+ - application/json
21
+ Content-Length:
22
+ - '9670'
23
+ Date:
24
+ - Sun, 09 Feb 2014 20:11:37 GMT
25
+ Connection:
26
+ - keep-alive
27
+ body:
28
+ encoding: ASCII-8BIT
29
+ string: "{\"code\":200,\"status\":\"Ok\",\"etag\":\"a81da1024c59e0f1fae203da388374c77da99fd2\",\"data\":{\"offset\":0,\"limit\":20,\"total\":1,\"count\":1,\"results\":[{\"id\":1009351,\"name\":\"Hulk\",\"description\":\"Caught
30
+ in a gamma bomb explosion while trying to save the life of a teenager, Dr.
31
+ Bruce Banner was transformed into the incredibly powerful creature called
32
+ the Hulk. An all too often misunderstood hero, the angrier the Hulk gets,
33
+ the stronger the Hulk gets.\",\"modified\":\"2014-01-21T18:01:51-0500\",\"thumbnail\":{\"path\":\"http://i.annihil.us/u/prod/marvel/i/mg/c/03/526039b477c92\",\"extension\":\"jpg\"},\"resourceURI\":\"http://gateway.marvel.com/v1/public/characters/1009351\",\"comics\":{\"available\":1303,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/comics\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/41112\",\"name\":\"5
34
+ Ronin (Hardcover)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/36365\",\"name\":\"5
35
+ Ronin (2010) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38753\",\"name\":\"5
36
+ Ronin (2010) #2 (BROOKS COVER)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/320\",\"name\":\"Actor
37
+ Presents Spider-Man and the Incredible Hulk (2003) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/38524\",\"name\":\"Age
38
+ of X: Universe (2011) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/24252\",\"name\":\"All-New
39
+ Savage She-Hulk (2009) #2\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12650\",\"name\":\"Alpha
40
+ Flight (1983) #110\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12651\",\"name\":\"Alpha
41
+ Flight (1983) #111\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/12668\",\"name\":\"Alpha
42
+ Flight (1983) #127\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6504\",\"name\":\"Amazing
43
+ Spider-Man (1963) #119\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/35528\",\"name\":\"Amazing
44
+ Spider-Man (1999) #667\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16904\",\"name\":\"Amazing
45
+ Spider-Man Annual (1964) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/16886\",\"name\":\"Amazing
46
+ Spider-Man Annual (1964) #12\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6951\",\"name\":\"Avengers
47
+ (1963) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/6952\",\"name\":\"Avengers
48
+ (1996) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17490\",\"name\":\"Avengers
49
+ (1998) #1\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/7174\",\"name\":\"Avengers
50
+ (1963) #3\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17758\",\"name\":\"Avengers
51
+ (1996) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17523\",\"name\":\"Avengers
52
+ (1998) #4\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/comics/17759\",\"name\":\"Avengers
53
+ (1996) #5\"}],\"returned\":20},\"series\":{\"available\":314,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/series\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/12429\",\"name\":\"5
54
+ Ronin (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15276\",\"name\":\"5
55
+ Ronin (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/458\",\"name\":\"Actor
56
+ Presents Spider-Man and the Incredible Hulk (2003)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/13896\",\"name\":\"Age
57
+ of X: Universe (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/7231\",\"name\":\"All-New
58
+ Savage She-Hulk (2009)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2116\",\"name\":\"Alpha
59
+ Flight (1983 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1987\",\"name\":\"Amazing
60
+ Spider-Man (1963 - 1998)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/454\",\"name\":\"Amazing
61
+ Spider-Man (1999 - 2013)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2984\",\"name\":\"Amazing
62
+ Spider-Man Annual (1964 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/354\",\"name\":\"Avengers
63
+ (1998 - 2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1991\",\"name\":\"Avengers
64
+ (1963 - 1996)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/3621\",\"name\":\"Avengers
65
+ (1996 - 1997)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9085\",\"name\":\"Avengers
66
+ (2010 - 2012)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/9859\",\"name\":\"Avengers
67
+ & the Infinity Gauntlet (2010)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/10035\",\"name\":\"Avengers
68
+ & the Infinity Gauntlet (2011)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1988\",\"name\":\"Avengers
69
+ Annual (1967 - 1994)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/15373\",\"name\":\"AVENGERS
70
+ ASSEMBLE (2012 - Present)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1340\",\"name\":\"Avengers
71
+ Assemble (2004)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/1816\",\"name\":\"Avengers
72
+ Assemble Vol. 4 (2007)\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/series/2384\",\"name\":\"Avengers
73
+ Classic (2007 - 2008)\"}],\"returned\":20},\"stories\":{\"available\":1972,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/stories\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/703\",\"name\":\"Interior
74
+ #703\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/705\",\"name\":\"Interior
75
+ #705\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/707\",\"name\":\"Interior
76
+ #707\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/873\",\"name\":\"Interior
77
+ #873\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/875\",\"name\":\"Interior
78
+ #875\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1134\",\"name\":\"Interior
79
+ #1134\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1218\",\"name\":\"Interior
80
+ #1218\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1220\",\"name\":\"Interior
81
+ #1220\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1222\",\"name\":\"Interior
82
+ #1222\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1224\",\"name\":\"Interior
83
+ #1224\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1226\",\"name\":\"Interior
84
+ #1226\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1228\",\"name\":\"Interior
85
+ #1228\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1230\",\"name\":\"Interior
86
+ #1230\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1232\",\"name\":\"Interior
87
+ #1232\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1233\",\"name\":\"Interior
88
+ #1233\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1234\",\"name\":\"1
89
+ of 6 - Tempus Fugit\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1235\",\"name\":\"1
90
+ of 6 - Tempus Fugit\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1236\",\"name\":\"2
91
+ of 6 - Tempus Fugit\",\"type\":\"cover\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1237\",\"name\":\"2
92
+ of 6 - Tempus Fugit\",\"type\":\"interiorStory\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/stories/1239\",\"name\":\"3
93
+ of 5 - Tempest Fugit\",\"type\":\"interiorStory\"}],\"returned\":20},\"events\":{\"available\":23,\"collectionURI\":\"http://gateway.marvel.com/v1/public/characters/1009351/events\",\"items\":[{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/116\",\"name\":\"Acts
94
+ of Vengeance!\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/303\",\"name\":\"Age
95
+ of X\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/310\",\"name\":\"Avengers
96
+ VS X-Men\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/296\",\"name\":\"Chaos
97
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/318\",\"name\":\"Dark
98
+ Reign\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/297\",\"name\":\"Fall
99
+ of the Hulks\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/248\",\"name\":\"Fall
100
+ of the Mutants\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/302\",\"name\":\"Fear
101
+ Itself\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/251\",\"name\":\"House
102
+ of M\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/253\",\"name\":\"Infinity
103
+ Gauntlet\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/29\",\"name\":\"Infinity
104
+ War\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/255\",\"name\":\"Initiative\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/37\",\"name\":\"Maximum
105
+ Security\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/154\",\"name\":\"Onslaught\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/212\",\"name\":\"Planet
106
+ Hulk\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/295\",\"name\":\"Realm
107
+ of Kings\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/269\",\"name\":\"Secret
108
+ Invasion\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/270\",\"name\":\"Secret
109
+ Wars\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/271\",\"name\":\"Secret
110
+ Wars II\"},{\"resourceURI\":\"http://gateway.marvel.com/v1/public/events/309\",\"name\":\"Shattered
111
+ Heroes\"}],\"returned\":20},\"urls\":[{\"type\":\"detail\",\"url\":\"http://marvel.com/comics/characters/1009351/hulk?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"},{\"type\":\"wiki\",\"url\":\"http://marvel.com/universe/Hulk_(Bruce_Banner)?utm_campaign=apiRef&utm_source=<PUBLIC_KEY>\"}]}]}}"
112
+ http_version:
113
+ recorded_at: Sat, 08 Feb 2014 21:20:00 GMT
114
+ recorded_with: VCR 2.8.0