tomato_power 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/.gitignore +18 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +9 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +57 -0
  7. data/Rakefile +1 -0
  8. data/lib/tomato_power/api/api.rb +97 -0
  9. data/lib/tomato_power/api/tomato_methods.rb +82 -0
  10. data/lib/tomato_power/client.rb +35 -0
  11. data/lib/tomato_power/helpers/helpers.rb +12 -0
  12. data/lib/tomato_power/helpers/parsers.rb +28 -0
  13. data/lib/tomato_power/movie/actor.rb +12 -0
  14. data/lib/tomato_power/movie/clip.rb +10 -0
  15. data/lib/tomato_power/movie/movie.rb +56 -0
  16. data/lib/tomato_power/movie/review.rb +15 -0
  17. data/lib/tomato_power/version.rb +3 -0
  18. data/lib/tomato_power.rb +22 -0
  19. data/spec/spec_helper.rb +5 -0
  20. data/spec/support/sample_data/no_results +1 -0
  21. data/spec/support/sample_data/sample_actor +5 -0
  22. data/spec/support/sample_data/sample_actors +186 -0
  23. data/spec/support/sample_data/sample_alias +64 -0
  24. data/spec/support/sample_data/sample_clip +6 -0
  25. data/spec/support/sample_data/sample_clips +147 -0
  26. data/spec/support/sample_data/sample_movie +1 -0
  27. data/spec/support/sample_data/sample_movies +46 -0
  28. data/spec/support/sample_data/sample_review +8 -0
  29. data/spec/support/sample_data/sample_reviews +191 -0
  30. data/spec/support/vcr/TomatoPower_API/API_Methods/valid_methods/should_create_methods.yml +598 -0
  31. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_consider_0_options_valid.yml +306 -0
  32. data/spec/support/vcr/TomatoPower_API/API_options_validation/valid_options/should_not_raise_error.yml +101 -0
  33. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_return_a_list_of_movie_objects.yml +101 -0
  34. data/spec/support/vcr/TomatoPower_API/List_request/searching_by_title/should_url_encode_search_string_before_sending.yml +102 -0
  35. data/spec/support/vcr/TomatoPower_API/List_request/should_return_a_list_of_movie_objects.yml +101 -0
  36. data/spec/support/vcr/TomatoPower_API/List_request/should_url_encode_search_string_before_sending.yml +102 -0
  37. data/spec/support/vcr/TomatoPower_API/Movie_request/cast/should_return_cast_of_movie.yml +356 -0
  38. data/spec/support/vcr/TomatoPower_API/Movie_request/clips/should_return_clips_of_movie.yml +638 -0
  39. data/spec/support/vcr/TomatoPower_API/Movie_request/no_results/should_return_error_string_if_no_results_are_found.yml +49 -0
  40. data/spec/support/vcr/TomatoPower_API/Movie_request/reviews/should_return_reviews.yml +271 -0
  41. data/spec/support/vcr/TomatoPower_API/Movie_request/should_return_single_movie.yml +161 -0
  42. data/spec/support/vcr/TomatoPower_API/Movie_request/similar/should_return_similar_movies.yml +121 -0
  43. data/spec/support/vcr/TomatoPower_Client/box_office_movies/should_return_list_of_movies.yml +396 -0
  44. data/spec/support/vcr/TomatoPower_Client/current_release_dvds/should_return_list_of_movies.yml +427 -0
  45. data/spec/support/vcr/TomatoPower_Client/in_theaters_movies/should_return_list_of_movies.yml +380 -0
  46. data/spec/support/vcr/TomatoPower_Client/new_release_dvds/should_return_list_of_movies.yml +392 -0
  47. data/spec/support/vcr/TomatoPower_Client/opening_movies/should_return_list_of_movies.yml +213 -0
  48. data/spec/support/vcr/TomatoPower_Client/search_by_id/should_return_list_of_movies_by_id.yml +88 -0
  49. data/spec/support/vcr/TomatoPower_Client/search_by_title/should_return_list_of_movies_by_title.yml +89 -0
  50. data/spec/support/vcr/TomatoPower_Client/top_rentals/should_return_list_of_movies.yml +409 -0
  51. data/spec/support/vcr/TomatoPower_Client/upcoming_dvds/should_return_list_of_movies.yml +359 -0
  52. data/spec/support/vcr/TomatoPower_Client/upcoming_movies/should_return_list_of_movies.yml +341 -0
  53. data/spec/support/vcr/TomatoPower_Movie/clips/should_return_clips.yml +250 -0
  54. data/spec/support/vcr/TomatoPower_Movie/full_cast/should_return_cast.yml +279 -0
  55. data/spec/support/vcr/TomatoPower_Movie/reviews/should_return_reviews.yml +205 -0
  56. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similar_movies.yml +231 -0
  57. data/spec/support/vcr/TomatoPower_Movie/similar/should_return_similars.yml +81 -0
  58. data/spec/support/vcr.rb +13 -0
  59. data/spec/unit_specs/actor_spec.rb +16 -0
  60. data/spec/unit_specs/api_spec.rb +126 -0
  61. data/spec/unit_specs/client_spec.rb +73 -0
  62. data/spec/unit_specs/clip_spec.rb +14 -0
  63. data/spec/unit_specs/helpers.rb +50 -0
  64. data/spec/unit_specs/helpers_spec.rb +4 -0
  65. data/spec/unit_specs/movie_spec.rb +75 -0
  66. data/spec/unit_specs/parsers_spec.rb +55 -0
  67. data/spec/unit_specs/review_spec.rb +17 -0
  68. data/spec/unit_specs/tomato_power_spec.rb +6 -0
  69. data/tomato_power.gemspec +29 -0
  70. metadata +295 -0
@@ -0,0 +1,598 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.rottentomatoes.com/api/public/v1.0/movies.json?apikey=<API_KEY>
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
+ Cache-Control:
20
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
21
+ Content-Language:
22
+ - en-US
23
+ Content-Type:
24
+ - text/javascript;charset=ISO-8859-1
25
+ Date:
26
+ - Wed, 20 Feb 2013 15:31:46 GMT
27
+ Expires:
28
+ - Sat, 6 May 1995 12:00:00 GMT
29
+ Pragma:
30
+ - no-cache
31
+ Server:
32
+ - Mashery Proxy
33
+ Set-Cookie:
34
+ - JSESSIONID=101BCD9A0D8AEB0B017D0240CF5C8798.localhost; Path=/
35
+ - ServerID=1335; Path=/
36
+ Vary:
37
+ - User-Agent,Accept-Encoding
38
+ X-Mashery-Responder:
39
+ - prod-j-worker-us-east-1b-16.mashery.com
40
+ Content-Length:
41
+ - '173'
42
+ Connection:
43
+ - keep-alive
44
+ body:
45
+ encoding: US-ASCII
46
+ string: ! '
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+ {"link_template":"http://api.rottentomatoes.com/api/public/v1.0/movies.json?q={search-term}&page_limit={results-per-page}&page={page-number}"}
78
+
79
+ '
80
+ http_version:
81
+ recorded_at: Wed, 20 Feb 2013 15:31:46 GMT
82
+ - request:
83
+ method: get
84
+ uri: http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?apikey=<API_KEY>
85
+ body:
86
+ encoding: US-ASCII
87
+ string: ''
88
+ headers:
89
+ Accept:
90
+ - ! '*/*'
91
+ User-Agent:
92
+ - Ruby
93
+ response:
94
+ status:
95
+ code: 200
96
+ message: OK
97
+ headers:
98
+ Cache-Control:
99
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
100
+ Content-Language:
101
+ - en-US
102
+ Content-Type:
103
+ - text/javascript;charset=ISO-8859-1
104
+ Date:
105
+ - Wed, 20 Feb 2013 15:31:46 GMT
106
+ Expires:
107
+ - Sat, 6 May 1995 12:00:00 GMT
108
+ Pragma:
109
+ - no-cache
110
+ Server:
111
+ - Mashery Proxy
112
+ Set-Cookie:
113
+ - JSESSIONID=CF1D886AAF70A6DF3FD9A8A9EDFEFFFF.localhost; Path=/
114
+ - ServerID=1335; Path=/
115
+ Vary:
116
+ - User-Agent,Accept-Encoding
117
+ X-Mashery-Responder:
118
+ - prod-j-worker-us-east-1b-16.mashery.com
119
+ Transfer-Encoding:
120
+ - chunked
121
+ Connection:
122
+ - keep-alive
123
+ body:
124
+ encoding: US-ASCII
125
+ string: ! '
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+ {"total":22,"movies":[{"id":"771267253","title":"How to Survive a Plague","year":2012,"mpaa_rating":"Unrated","runtime":109,"critics_consensus":"Angry,
159
+ powerful, and stirring, How to Survive a Plague is a brilliantly constructed
160
+ documentary about the activists who pushed for action to combat the AIDS epidemic.","release_dates":{"theater":"2012-09-21","dvd":"2013-02-25"},"ratings":{"critics_rating":"Certified
161
+ Fresh","critics_score":100,"audience_rating":"Upright","audience_score":80},"synopsis":"How
162
+ to Survive a Plague is the story of two coalitions-ACT UP and TAG (Treatment
163
+ Action Group)-whose activism and innovation turned AIDS from a death sentence
164
+ into a manageable condition. Despite having no scientific training, these
165
+ self-made activists infiltrated the pharmaceutical industry and helped identify
166
+ promising new drugs, moving them from experimental trials to patients in record
167
+ time. With unfettered access to a treasure trove of never-before-seen archival
168
+ footage from the 1980s and ''90s, filmmaker David France puts the viewer smack
169
+ in the middle of the controversial actions, the heated meetings, the heartbreaking
170
+ failures, and the exultant breakthroughs of heroes in the making. -- (C) Official
171
+ Site","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/66/11166662_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/66/11166662_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/66/11166662_det.jpg","original":"http://content8.flixster.com/movie/11/16/66/11166662_ori.jpg"},"abridged_cast":[{"name":"Peter
172
+ Staley","id":"771415689"},{"name":"Garance Franke-Riuta","id":"771420775"},{"name":"Mark
173
+ Harrington","id":"771116450"},{"name":"Spencer Cox","id":"771420776"},{"name":"Larry
174
+ Kramer","id":"399395998"}],"alternate_ids":{"imdb":"2124803"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253.json","alternate":"http://www.rottentomatoes.com/m/how_to_survive_a_plague/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267253/similar.json"}},{"id":"771242746","title":"The
175
+ Eye of the Storm","year":2012,"mpaa_rating":"Unrated","runtime":114,"release_dates":{"theater":"2012-09-07","dvd":"2013-02-25"},"ratings":{"critics_rating":"Rotten","critics_score":55,"audience_rating":"Spilled","audience_score":50},"synopsis":"In
176
+ the Sydney suburb of Centennial Park, two nurses, a housekeeper and a solicitor
177
+ attend to Elizabeth Hunter as her expatriate son and daughter convene at her
178
+ deathbed. But in dying, as in living, Mrs Hunter remains a powerful force
179
+ on those who surround her. Based on the novel by Nobel Prize winner Patrick
180
+ White, The Eye of the Storm is a savage exploration of family relationships
181
+ - and the sharp undercurrents of love and hate, comedy and tragedy, which
182
+ define them. -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/64/11166489_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/64/11166489_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/64/11166489_det.jpg","original":"http://content7.flixster.com/movie/11/16/64/11166489_ori.jpg"},"abridged_cast":[{"name":"Geoffrey
183
+ Rush","id":"162659119","characters":["Basil","Basil Hunter"]},{"name":"Charlotte
184
+ Rampling","id":"162670589","characters":["Elizabeth","Elizabeth Hunter"]},{"name":"Judy
185
+ Davis","id":"162656849","characters":["Dorothy","Dorothy de Lascabanes"]},{"name":"Colin
186
+ Friels","id":"287408324","characters":["Athol Shreve"]},{"name":"Robyn Nevin","id":"770693111","characters":["Lal"]}],"alternate_ids":{"imdb":"1600207"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746.json","alternate":"http://www.rottentomatoes.com/m/the_eye_of_the_storm/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771242746/similar.json"}},{"id":"771209435","title":"Silent
187
+ Souls","year":2011,"mpaa_rating":"Unrated","runtime":75,"release_dates":{"theater":"2011-09-16","dvd":"2013-02-25"},"ratings":{"critics_rating":"Certified
188
+ Fresh","critics_score":98,"audience_rating":"Upright","audience_score":75},"synopsis":"When
189
+ Miron''s beloved wife Tanya passes away, he asks his best friend Aist to help
190
+ him say goodbye to her according to the rituals of the Merja culture, an ancient
191
+ Finno-Ugric tribe from Lake Nero, a picturesque region in West-Central Russia.
192
+ Although the Merja people assimilated into Russians in the 17th century, their
193
+ myths and traditions live on in their descendants'' modern life. The two men
194
+ set out on a road trip thousands of miles across the boundless land, with
195
+ them, two small birds in a cage. Along the way, as is custom for the Merjans,
196
+ Miron shares intimate memories of his conjugal life. But as they reach the
197
+ banks of the sacred lake where they will forever part with the body, he realizes
198
+ he wasn''t the only one in love with Tanya... -- (C) Shadow Distribution","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/04/11160427_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/04/11160427_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/04/11160427_det.jpg","original":"http://content9.flixster.com/movie/11/16/04/11160427_ori.jpg"},"abridged_cast":[{"name":"Igor
199
+ Sergeyev","id":"771083112","characters":["Aist"]},{"name":"Yuri Tsurilo","id":"770697199","characters":["Miron"]},{"name":"Yuliya
200
+ Aug","id":"771005781","characters":["Tanya"]},{"name":"Ivan Tushin","id":"771381226","characters":["Aist
201
+ as a Child"]},{"name":"Viktor Sukhorukov","id":"359853719"}],"alternate_ids":{"imdb":"1693830"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435.json","alternate":"http://www.rottentomatoes.com/m/silent_souls/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771209435/similar.json"}},{"id":"771267243","title":"Escape
202
+ Fire: The Fight to Rescue American Healthcare","year":2012,"mpaa_rating":"PG-13","runtime":98,"release_dates":{"theater":"2012-10-05","dvd":"2013-02-25"},"ratings":{"critics_rating":"Fresh","critics_score":81,"audience_rating":"Upright","audience_score":92},"synopsis":"Escape
203
+ Fire tackles one of the most pressing issues of our time: what can be done
204
+ to save our broken medical system? Award-winning filmmakers Matthew Heineman
205
+ and Susan Froemke follow dramatic human stories as well as leaders fighting
206
+ to transform healthcare at the highest levels of medicine, industry, government,
207
+ and even the US military. The film examines the powerful forces trying to
208
+ maintain the status quo in an industry designed for quick fixes rather than
209
+ prevention, for profit-driven care rather than patient-driven care. After
210
+ decades of resistance, a movement to bring innovative high-touch, low-cost
211
+ methods of prevention and healing into our high-tech, costly system is finally
212
+ gaining ground. Escape Fire is about finding a way out. It''s about saving
213
+ the health of a nation. -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/66/11166617_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/66/11166617_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/66/11166617_det.jpg","original":"http://content7.flixster.com/movie/11/16/66/11166617_ori.jpg"},"abridged_cast":[{"name":"Don
214
+ Berwick","id":"771422357"},{"name":"Shannon Brownlee","id":"771423014"},{"name":"Steve
215
+ Burd","id":"771422359"},{"name":"David Fridovich","id":"771423015"},{"name":"Wayne
216
+ Jonas","id":"771423016"}],"alternate_ids":{"imdb":"2093109"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243.json","alternate":"http://www.rottentomatoes.com/m/escape_fire_the_fight_to_rescue_american_healthcare/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267243/similar.json"}},{"id":"771321641","title":"Matru
217
+ Ki Bijlee Ka Mandola","year":2013,"mpaa_rating":"Unrated","runtime":147,"release_dates":{"theater":"2013-01-11","dvd":"2013-02-25"},"ratings":{"critics_rating":"Rotten","critics_score":33,"audience_rating":"Spilled","audience_score":48},"synopsis":"Set
218
+ in the rustic surroundings of a village in Haryana in India, \"Matru ki Bijlee
219
+ ka Mandola\" is a comedy-drama about Harry Mandola (PANKAJ KAPUR), a wealthy
220
+ industrialist who loves his drink, his daughter Bijlee (ANUSHKA SHARMA) and
221
+ the unusual bond they both share with Harry''s man friday, Matru (IMRAN KHAN).
222
+ Much to her father''s delight, Bijlee is all set to marry Baadal (ARYA BABBAR),
223
+ the son of a powerful politician Chaudhari Devi (SHABANA AZMI). This alliance
224
+ which is far from just being a simple union of two young people becomes the
225
+ seed for a story that brings twists and turns in the lives of Matru, Bijlee
226
+ and Mandola. (c) Fox International","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/85/11168573_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/85/11168573_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/85/11168573_det.jpg","original":"http://content7.flixster.com/movie/11/16/85/11168573_ori.jpg"},"abridged_cast":[{"name":"Imran
227
+ Khan","id":"770720479","characters":["Matru"]},{"name":"Anushka Sharma","id":"770805979","characters":["Bijlee
228
+ Mandola"]},{"name":"Pankaj Kapur","id":"770678918","characters":["Harry Mandola"]},{"name":"Shabana
229
+ Azmi","id":"341815838","characters":["Chaudhari Devi"]},{"name":"Arya Babbar","id":"770676620","characters":["Baadal"]}],"alternate_ids":{"imdb":"2106537"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641.json","alternate":"http://www.rottentomatoes.com/m/matru_ki_bijlee_ka_mandola/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771321641/similar.json"}},{"id":"771267264","title":"Madrid,
230
+ 1987","year":2012,"mpaa_rating":"Unrated","runtime":104,"release_dates":{"theater":"2012-10-12","dvd":"2013-02-25"},"ratings":{"critics_rating":"Fresh","critics_score":86,"audience_rating":"Spilled","audience_score":50},"synopsis":"Madrid,
231
+ 1987 ...is a two-character story with a verbose discourse on writing, journalism,
232
+ careerism, aging and politics. Shot mostly within a very constricted space,
233
+ the story follows an older, celebrated journalist Miguel (Jose Sacristan)
234
+ who meets the beautiful and coy journalism-student Angela (Maria Valverde)
235
+ to give an interview - but becomes intent upon seducing her. They end up spending
236
+ time in the most unusual manner ...discussing literature, prose and career
237
+ trajectories ...gradually divulging little insights into their own selves
238
+ as we start to understand the old journalist''s cynicism and the young protege''s
239
+ intentions.","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/71/11167117_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/71/11167117_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/71/11167117_det.jpg","original":"http://content7.flixster.com/movie/11/16/71/11167117_ori.jpg"},"abridged_cast":[{"name":"Jose
240
+ Sacristan","id":"410885112"},{"name":"Maria Valverde","id":"763949211"},{"name":"Ramon
241
+ Fontsere","id":"770672986"},{"name":"Alberto Ferreiro","id":"770687098"},{"name":"Eduardo
242
+ Antuna","id":"770669870"}],"alternate_ids":{"imdb":"1760980"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264.json","alternate":"http://www.rottentomatoes.com/m/madrid_1987_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771267264/similar.json"}},{"id":"771318293","title":"Border
243
+ Run (The Mule)","year":2012,"mpaa_rating":"R","runtime":96,"release_dates":{"theater":"2012-10-01","dvd":"2013-02-25"},"ratings":{"critics_score":-1,"audience_rating":"Spilled","audience_score":0},"synopsis":"","posters":{"thumbnail":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","profile":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","detailed":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","original":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"},"abridged_cast":[{"name":"Sharon
244
+ Stone","id":"162653066","characters":["Sofie Talbert"]},{"name":"Billy Zane","id":"162668093"},{"name":"Manolo
245
+ Cardona","id":"341817501"},{"name":"Miguel Rodarte","id":"770672249"},{"name":"Rosemberg
246
+ Salgado","id":"770808737"}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293.json","alternate":"http://www.rottentomatoes.com/m/border_run/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771318293/similar.json"}},{"id":"771206753","title":"The
247
+ Master","year":2012,"mpaa_rating":"R","runtime":138,"critics_consensus":"Smart
248
+ and solidly engrossing, The Master extends Paul Thomas Anderson''s winning
249
+ streak of challenging films for serious audiences.","release_dates":{"theater":"2012-09-14","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
250
+ Fresh","critics_score":86,"audience_rating":"Upright","audience_score":62},"synopsis":"A
251
+ striking portrait of drifters and seekers in post World War II America, Paul
252
+ Thomas Anderson''s The Master unfolds the journey of a Naval veteran (Joaquin
253
+ Phoenix) who arrives home from war unsettled and uncertain of his future -
254
+ until he is tantalized by The Cause and its charismatic leader (Philip Seymour
255
+ Hoffman). -- (C) Weinstein","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/61/11166142_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/61/11166142_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/61/11166142_det.jpg","original":"http://content8.flixster.com/movie/11/16/61/11166142_ori.jpg"},"abridged_cast":[{"name":"Joaquin
256
+ Phoenix","id":"162655394","characters":["Freddie Quell","Freddie Sutton"]},{"name":"Philip
257
+ Seymour Hoffman","id":"162654287","characters":["Lancaster Dodd"]},{"name":"Amy
258
+ Adams","id":"162653029","characters":["Mary Sue Dodd","Peggy Dodd"]},{"name":"Laura
259
+ Dern","id":"162654251","characters":["Helen","Helen Sullivan"]},{"name":"Jesse
260
+ Plemons","id":"770696729","characters":["Val Dodd"]}],"alternate_ids":{"imdb":"1560747"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753.json","alternate":"http://www.rottentomatoes.com/m/the_master_2011/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206753/similar.json"}},{"id":"771257653","title":"Chasing
261
+ Mavericks","year":2012,"mpaa_rating":"PG","runtime":116,"critics_consensus":"It''s
262
+ sweet, gentle, and affably modest, but Chasing Mavericks is ultimately pulled
263
+ under by an unconvincing script and a puzzling lack of energy.","release_dates":{"theater":"2012-10-26","dvd":"2013-02-26"},"ratings":{"critics_rating":"Rotten","critics_score":33,"audience_rating":"Upright","audience_score":74},"synopsis":"Chasing
264
+ Mavericks is the inspirational true story of real life surfing phenom Jay
265
+ Moriarity (played by newcomer Jonny Weston). When 15 year old Jay discovers
266
+ that the mythic Mavericks surf break, one of the biggest waves on Earth, is
267
+ not only real, but exists just miles from his Santa Cruz home, he enlists
268
+ the help of local legend Frosty Hesson (played by Gerard Butler) to train
269
+ him to survive it. As Jay and Frosty embark on their quest to accomplish the
270
+ impossible, they form a unique friendship that transforms both their lives,
271
+ and their quest to tame Mavericks becomes about far more than surfing. Chasing
272
+ Mavericks was made with the help of some of the biggest names in the surfing
273
+ world, and features some of the most mind-blowing real wave footage ever captured
274
+ on film. -- (C) Official Site","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/82/11168294_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/82/11168294_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/82/11168294_det.jpg","original":"http://content8.flixster.com/movie/11/16/82/11168294_ori.jpg"},"abridged_cast":[{"name":"Jonny
275
+ Weston","id":"771403662","characters":["Jay Moriarty"]},{"name":"Gerard Butler","id":"162659102","characters":["Frosty
276
+ Hesson"]},{"name":"Elisabeth Shue","id":"162654719","characters":["Kristy
277
+ Moriarity","Kristy Moriarty"]},{"name":"Abigail Spencer","id":"770729279","characters":["Brenda
278
+ Hesson"]},{"name":"John Weston","id":"771187525","characters":["Jay Moriarty"]}],"alternate_ids":{"imdb":"1629757"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653.json","alternate":"http://www.rottentomatoes.com/m/chasing_mavericks/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771257653/similar.json"}},{"id":"771243297","title":"This
279
+ Is Not a Film","year":2012,"mpaa_rating":"Unrated","runtime":75,"critics_consensus":"Through
280
+ simple means and filming, This is Not a Film presents a vital political statement
281
+ and a snapshot of life in Iran as enemy of the state.","release_dates":{"theater":"2012-02-29","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
282
+ Fresh","critics_score":99,"audience_rating":"Upright","audience_score":74},"synopsis":"This
283
+ clandestine documentary, shot partially on an iPhone and smuggled into France
284
+ in a cake for a last-minute submission to Cannes, depicts the day-to-day life
285
+ of acclaimed director Jafar Panahi (Offside, The Circle) during his house
286
+ arrest in his Tehran apartment. While appealing his sentence - six years in
287
+ prison and a 20 year ban from filmmaking - Panahi is seen talking to his family
288
+ and lawyer on the phone, discussing his plight with Mirtahmasb and reflecting
289
+ on the meaning of the art of filmmaking. -- (C) Palisades Tartan","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/37/11163759_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/37/11163759_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/37/11163759_det.jpg","original":"http://content9.flixster.com/movie/11/16/37/11163759_ori.jpg"},"abridged_cast":[{"name":"Jafar
290
+ Panahi","id":"326394927","characters":["Jafar Panahi"]},{"name":"Mojtaba Mirtahmasb","id":"771185163","characters":["Mojtaba
291
+ Mirtahmasb"]}],"alternate_ids":{"imdb":"1667905"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297.json","alternate":"http://www.rottentomatoes.com/m/this_is_not_a_film_2011/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771243297/similar.json"}},{"id":"771306082","title":"Holy
292
+ Motors","year":2012,"mpaa_rating":"Unrated","runtime":115,"critics_consensus":"Mesmerizingly
293
+ strange and willfully perverse, Holy Motors offers an unforgettable visual
294
+ feast alongside a spellbinding -- albeit unapologetically challenging -- narrative.","release_dates":{"theater":"2012-10-17","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
295
+ Fresh","critics_score":90,"audience_rating":"Upright","audience_score":73},"synopsis":"From
296
+ dawn to dusk, a few hours in the life of Monsieur Oscar, a shadowy character
297
+ who journeys from one life to the next. He is, in turn, captain of industry,
298
+ assassin, beggar, monster, family man... He seems to be playing roles, plunging
299
+ headlong into each part - but where are the cameras? Monsieur Oscar is alone,
300
+ accompanied only by Celine, the slender blonde woman behind the wheel of the
301
+ vast engine that transports him through and around Paris. He''s like a conscientious
302
+ assassin moving from hit to hit. In pursuit of the beautiful gesture, the
303
+ mysterious driving force, the women and the ghosts of past lives. But where
304
+ is his true home, his family, his rest? -- (C) Official Site","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/70/11167005_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/70/11167005_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/70/11167005_det.jpg","original":"http://content7.flixster.com/movie/11/16/70/11167005_ori.jpg"},"abridged_cast":[{"name":"Denis
305
+ Lavant","id":"162727099","characters":["L''accordeoniste","L''homme au foyer","L''OS
306
+ de Motion-Capture","La mendiante","Le banquier","Le mourant","Le pere","Le
307
+ tue","Le tueur","M. Merde","M. Oscar","Mr. Oscar"]},{"name":"Edith Scob","id":"410145712","characters":["Celine"]},{"name":"Kylie
308
+ Minogue","id":"224764583","characters":["Eva Grace","Eva/Jean","Jean"]},{"name":"Eva
309
+ Mendes","id":"162666504","characters":["Kay M"]},{"name":"Elise Lhomeau","id":"770911547","characters":["Elise","Lea"]}],"alternate_ids":{"imdb":"2076220"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082.json","alternate":"http://www.rottentomatoes.com/m/holy_motors/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306082/similar.json"}},{"id":"771252695","title":"The
310
+ Loneliest Planet","year":2012,"mpaa_rating":"Unrated","runtime":113,"critics_consensus":"The
311
+ source material that inspired The Loneliest Planet may be brief, but this
312
+ adaptation of a Tom Bissell short story compensates with studious, finely
313
+ detailed filmmaking, haunting visuals, and thought-provoking subtext.","release_dates":{"theater":"2012-10-26","dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":73,"audience_rating":"Spilled","audience_score":34},"synopsis":"Alex
314
+ and Nica are young, in love and engaged to be married. The summer before their
315
+ wedding, they are backpacking in the Caucasus Mountains in Georgia. The couple
316
+ hire a local guide to lead them on a camping trek, and the three set off into
317
+ a stunning wilderness, a landscape that is both overwhelmingly open and frighteningly
318
+ closed. Walking for hours, they trade anecdotes, play games to pass the time
319
+ of moving through space. And then, a momentary misstep, a gesture that takes
320
+ only two or three seconds, a gesture that''s over almost as soon as it begins.
321
+ But once it is done, it can''t be undone. Once it is done, it threatens to
322
+ undo everything the couple believed about each other and about themselves.
323
+ -- (C) IFC","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/71/11167103_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/71/11167103_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/71/11167103_det.jpg","original":"http://content9.flixster.com/movie/11/16/71/11167103_ori.jpg"},"abridged_cast":[{"name":"Gael
324
+ Garcia Bernal","id":"162684026","characters":["Alex"]},{"name":"Hani Furstenberg","id":"471157500","characters":["Nica"]},{"name":"Bidzina
325
+ Gujabidze","id":"771379472","characters":["Dato"]}],"alternate_ids":{"imdb":"1695405"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695.json","alternate":"http://www.rottentomatoes.com/m/the_loneliest_planet/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771252695/similar.json"}},{"id":"771251479","title":"Chicken
326
+ with Plums","year":2012,"mpaa_rating":"PG-13","runtime":90,"release_dates":{"theater":"2012-08-17","dvd":"2013-02-26"},"ratings":{"critics_rating":"Certified
327
+ Fresh","critics_score":78,"audience_rating":"Upright","audience_score":72},"synopsis":"Teheran,
328
+ 1958. Since his beloved violin was broken, Nasser Ali Khan, one of the most
329
+ renowned musicians of his day, has lost all taste for life. Finding no instrument
330
+ worthy of replacing it, he decides to confine himself to bed to await death.
331
+ As he hopes for its arrival, he plunges into deep reveries, with dreams as
332
+ melancholic as they are joyous, taking him back to his youth and even to a
333
+ conversation with Azrael, the Angel of Death, who reveals the future of his
334
+ children... As pieces of the puzzle gradually fit together, the poignant secret
335
+ of his life comes to light: a wonderful story of love that inspired his genius
336
+ and his music... -- (C) Sony","posters":{"thumbnail":"http://content7.flixster.com/movie/11/16/61/11166141_mob.jpg","profile":"http://content7.flixster.com/movie/11/16/61/11166141_pro.jpg","detailed":"http://content7.flixster.com/movie/11/16/61/11166141_det.jpg","original":"http://content7.flixster.com/movie/11/16/61/11166141_ori.jpg"},"abridged_cast":[{"name":"Mathieu
337
+ Amalric","id":"326393387","characters":["Nasser-Ali"]},{"name":"Edouard Baer","id":"299734282","characters":["Azrael"]},{"name":"Maria
338
+ de Medeiros","id":"162694724","characters":["Faringuisse"]},{"name":"Golshifteh
339
+ Farahani","id":"410146034","characters":["Irane"]},{"name":"Eric Caravaca","id":"539851451","characters":["Abdi"]}],"alternate_ids":{"imdb":"1663321"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479.json","alternate":"http://www.rottentomatoes.com/m/chicken_with_plums/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771251479/similar.json"}},{"id":"771253589","title":"A
340
+ Simple Life","year":2012,"mpaa_rating":"Unrated","runtime":118,"release_dates":{"theater":"2012-04-13","dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":92,"audience_rating":"Upright","audience_score":86},"synopsis":"Since
341
+ her teenage years, Chung Chun-Tao has worked as an amah - a servant - for
342
+ the Leung family. Known as Ah Tao, she witnessed every aspect of the family''s
343
+ life. Now, after 60 years of service, she is looking after Roger, who works
344
+ in the film industry and is the only member of the family still resident in
345
+ Hong Kong. One day Roger comes home from work to find that Ah Tao has suffered
346
+ a stroke. He rushes her to hospital, where she announces that she wants to
347
+ quit her job and move into anursing home. Roger researches the possibilities
348
+ and finds her a room in an establishment run by an old friend. Ah Tao moves
349
+ in and begins acquainting herself with a new ''family'': the brisk but fundamentally
350
+ kindly supervisor Ms Choi and a motley crew of elderly residents Giving ever
351
+ more time and attention to Ah Tao''s needs and pleasures, Roger comes to realise
352
+ how much she means to him. -- (C) China Lion","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/40/11164015_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/40/11164015_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/40/11164015_det.jpg","original":"http://content9.flixster.com/movie/11/16/40/11164015_ori.jpg"},"abridged_cast":[{"name":"Andy
353
+ Lau","id":"162659309"},{"name":"Deannie Yip","id":"625687220"},{"name":"Sui-man
354
+ Chim","id":"770678707"},{"name":"Raymond Chow","id":"282429309"},{"name":"Paul
355
+ Chun","id":"625693248"}],"alternate_ids":{"imdb":"2008006"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589.json","alternate":"http://www.rottentomatoes.com/m/a_simple_life_2011/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253589/similar.json"}},{"id":"771206327","title":"Over
356
+ Your Cities Grass Will Grow","year":2011,"mpaa_rating":"Unrated","runtime":105,"release_dates":{"theater":"2011-08-10","dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":79,"audience_rating":"Spilled","audience_score":59},"synopsis":"Sophie
357
+ Fiennes records Anselm Kiefer, as the 65-year-old world-renowned artist creates
358
+ a spectacular architectonic landscape. \"In 1993 (Kiefer) left his native
359
+ Germany and settled in Barjac in France, where he bought a derelict silk factory,
360
+ transforming it into an extraordinary artistic centre... at once the place
361
+ where his paintings and sculptures are housed and displayed, and a colossal,
362
+ evolving architectural artwork in itself. Fiennes begins by roaming through
363
+ the tunnels and corridors of his studio-network: huge, disorienting shapes
364
+ and forms loom, composed of earth and mud. There are giant, organic pillars,
365
+ like stalagmites or termite mounds, a visual or conceptual rhyme to the towers
366
+ built outside... Fiennes''s emphases are almost abstract: color, light, texture,
367
+ form - and to these, she adds sound, using the music of Jorg Widmann and Gyorgy
368
+ Ligeti. Anselm''s studio is a place where real, hard work is going on: smelting,
369
+ sawing and hammering... His artistry looks as if it could be taking place
370
+ centuries ago, and yet it feels very modern... A deeply serious meditation
371
+ on artistic practice and expression.\" - Peter Bradshaw, The Guardian (UK)
372
+ --(C) Alive Mind","posters":{"thumbnail":"http://content6.flixster.com/movie/11/15/86/11158652_mob.jpg","profile":"http://content6.flixster.com/movie/11/15/86/11158652_pro.jpg","detailed":"http://content6.flixster.com/movie/11/15/86/11158652_det.jpg","original":"http://content6.flixster.com/movie/11/15/86/11158652_ori.jpg"},"abridged_cast":[{"name":"Klaus
373
+ Dermutz","id":"771377097","characters":["Narrator"]},{"name":"Anselm Kiefer","id":"770911607","characters":["Anselm
374
+ Kiefer"]}],"alternate_ids":{"imdb":"1414368"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327.json","alternate":"http://www.rottentomatoes.com/m/over_your_cities_grass_will_grow/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771206327/similar.json"}},{"id":"771303983","title":"Fast
375
+ Girls","year":2012,"mpaa_rating":"Unrated","runtime":91,"release_dates":{"dvd":"2013-02-26"},"ratings":{"critics_rating":"Fresh","critics_score":82,"audience_score":63},"synopsis":"The
376
+ film, starring a trio of Britain''s hottest young talent - LENORA CRICHLOW
377
+ (Being Human), LILY JAMES (Clash of the Titans 2) and BRADLEY JAMES (Merlin)
378
+ - tracks the rollercoaster journey of a British female sprint relay team and
379
+ is set to be the feel-good film of the summer.","posters":{"thumbnail":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","profile":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","detailed":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","original":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"},"abridged_cast":[{"name":"Lily
380
+ James","id":"771402472"},{"name":"Bradley James","id":"770852156"},{"name":"Rupert
381
+ Graves","id":"162694911"},{"name":"Lenora Crichlow","id":"404479141"},{"name":"Noel
382
+ Clarke","id":"364640371"}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983.json","alternate":"http://www.rottentomatoes.com/m/fast_girls_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771303983/similar.json"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?page_limit=16&country=us&page=1","next":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?page_limit=16&country=us&page=2","alternate":"http://www.rottentomatoes.com/dvd/upcoming.json"},"link_template":"http://api.rottentomatoes.com/api/public/v1.0/lists/dvds/upcoming.json?page_limit={results-per-page}&page={page-number}&country={country-code}"}
383
+
384
+
385
+ '
386
+ http_version:
387
+ recorded_at: Wed, 20 Feb 2013 15:31:46 GMT
388
+ - request:
389
+ method: get
390
+ uri: http://api.rottentomatoes.com/api/public/v1.0/lists/movies/opening.json?apikey=<API_KEY>
391
+ body:
392
+ encoding: US-ASCII
393
+ string: ''
394
+ headers:
395
+ Accept:
396
+ - ! '*/*'
397
+ User-Agent:
398
+ - Ruby
399
+ response:
400
+ status:
401
+ code: 200
402
+ message: OK
403
+ headers:
404
+ Cache-Control:
405
+ - no-store, no-cache, must-revalidate, post-check=0, pre-check=0
406
+ Content-Language:
407
+ - en-US
408
+ Content-Type:
409
+ - text/javascript;charset=ISO-8859-1
410
+ Date:
411
+ - Wed, 20 Feb 2013 15:31:47 GMT
412
+ Expires:
413
+ - Sat, 6 May 1995 12:00:00 GMT
414
+ Pragma:
415
+ - no-cache
416
+ Server:
417
+ - Mashery Proxy
418
+ Set-Cookie:
419
+ - JSESSIONID=8CBC8B89C470FDF8FB205A3C3FE6990B.localhost; Path=/
420
+ - ServerID=1336; Path=/
421
+ Vary:
422
+ - User-Agent,Accept-Encoding
423
+ X-Mashery-Responder:
424
+ - prod-j-worker-us-east-1c-19.mashery.com
425
+ Transfer-Encoding:
426
+ - chunked
427
+ Connection:
428
+ - keep-alive
429
+ body:
430
+ encoding: US-ASCII
431
+ string: ! '
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+ {"movies":[{"id":"771316320","title":"Snitch","year":2013,"mpaa_rating":"PG-13","runtime":95,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_rating":"Fresh","critics_score":80,"audience_score":96},"synopsis":"In
461
+ the fast-paced action thriller SNITCH, Dwayne Johnson stars as a father whose
462
+ teenage son is wrongly accused of a drug distribution crime and is looking
463
+ at a mandatory minimum prison sentence of 10 years. Desperate and determined
464
+ to rescue his son at all costs, he makes a deal with the U.S. attorney to
465
+ work as an undercover informant and infiltrate a drug cartel on a dangerous
466
+ mission -- risking everything, including his family and his own life. (c)
467
+ Summit","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/83/11168350_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/83/11168350_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/83/11168350_det.jpg","original":"http://content8.flixster.com/movie/11/16/83/11168350_ori.jpg"},"abridged_cast":[{"name":"Dwayne
468
+ \"The Rock\" Johnson","id":"770893686","characters":["John Matthews"]},{"name":"Barry
469
+ Pepper","id":"162671262","characters":["Agent Cooper"]},{"name":"Jon Bernthal","id":"770682766","characters":["Daniel
470
+ Cruz"]},{"name":"Susan Sarandon","id":"162654579","characters":["Joanne Keeghan"]},{"name":"Michael
471
+ Kenneth Williams","id":"770835098","characters":["Malik"]}],"alternate_ids":{"imdb":"0882977"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316320.json","alternate":"http://www.rottentomatoes.com/m/snitch_2013/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316320/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316320/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316320/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316320/similar.json"}},{"id":"771317035","title":"Dark
472
+ Skies","year":2013,"mpaa_rating":"PG-13","runtime":95,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_score":-1,"audience_score":88},"synopsis":"From
473
+ the producer of Paranormal Activity, Insidious, and Sinister comes Dark Skies:
474
+ a supernatural thriller that follows a young family living in the suburbs.
475
+ As husband and wife Daniel and Lacey Barret witness an escalating series of
476
+ disturbing events involving their family, their safe and peaceful home quickly
477
+ unravels. When it becomes clear that the Barret family is being targeted by
478
+ an unimaginably terrifying and deadly force, Daniel and Lacey take matters
479
+ in their own hands to solve the mystery of what is after their family. Written
480
+ and Directed by Scott Stewart (PRIEST, LEGION) Starring: Keri Russell, Josh
481
+ Hamilton, Dakota Goyo, Kadan Rockett and J.K. Simmons (c) Weinstein","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/87/11168752_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/87/11168752_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/87/11168752_det.jpg","original":"http://content6.flixster.com/movie/11/16/87/11168752_ori.jpg"},"abridged_cast":[{"name":"Keri
482
+ Russell","id":"162685092","characters":["Lacy Barrett"]},{"name":"Josh Hamilton","id":"162668388","characters":["Daniel
483
+ Barrett"]},{"name":"Dakota Goyo","id":"528367055","characters":["Jesse","Jesse
484
+ Barrett"]},{"name":"Kadan Rockett","id":"771428752","characters":["Sam Barrett"]},{"name":"J.K.
485
+ Simmons","id":"592170459","characters":["Edwin Pollard"]}],"alternate_ids":{"imdb":"2387433"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771317035.json","alternate":"http://www.rottentomatoes.com/m/dark_skies_2013/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771317035/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771317035/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771317035/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771317035/similar.json"}},{"id":"771315852","title":"Bless
486
+ Me, Ultima","year":2013,"mpaa_rating":"PG-13","runtime":102,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_score":-1,"audience_score":74},"synopsis":"Director
487
+ Carl Franklin (One False Move, Devil in a Blue Dress) helmed this adaptation
488
+ of Rudolfo Anaya''s controversial novel about a young boy and the enigmatic
489
+ healer who opens his eyes to the wonders of the spiritual realm. New Mexico:
490
+ the early ''40s. As the entire world is plunged into war for a second time,
491
+ Antonio Marez (Luke Ganalon) grapples with the harsh realities all around
492
+ him. His life is forever changed by the sudden arrival of Ultima (Miriam Colon),
493
+ a woman with supernatural healing powers, who has come to his family on a
494
+ mission of kindness. As Ultima inspires Antonio to question authority and
495
+ see the world from a new perspective, the young boy witnesses a series of
496
+ seemingly impossible events that have a profound impact on his concepts of
497
+ divinity and fate. ~ Jason Buchanan, Rovi","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/89/11168991_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/89/11168991_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/89/11168991_det.jpg","original":"http://content9.flixster.com/movie/11/16/89/11168991_ori.jpg"},"abridged_cast":[{"name":"Miriam
498
+ Colon","id":"761416364","characters":["Ultima"]},{"name":"Luke Ganalon","id":"771420033","characters":["Antonio
499
+ Marez"]},{"name":"Benito Martinez","id":"770700822","characters":["Gabriel"]},{"name":"Dolores
500
+ Heredia","id":"351527629","characters":["Maria"]},{"name":"Joaquin Cosio","id":"770813447","characters":["Narciso"]}],"alternate_ids":{"imdb":"1390398"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771315852.json","alternate":"http://www.rottentomatoes.com/m/bless_me_ultima_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771315852/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771315852/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771315852/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771315852/similar.json"}},{"id":"771309968","title":"Red
501
+ Flag","year":2013,"mpaa_rating":"Unrated","runtime":85,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_rating":"Fresh","critics_score":100,"audience_score":54},"synopsis":"A
502
+ laugh-out-loud road trip comedy, starring writer/director Alex Karpovsky (\"Girls,\"
503
+ TINY FURNITURE) as Alex Karpovsky, a newly-single indie filmmaker who hits
504
+ the road with an old friend (Onur Tukel) to promote one of his films. As the
505
+ pair travels from one half-empty theater to the next, pursued by an adoring
506
+ fan (Jennifer Prediger) who drives them into an exceptionally uncomfortable
507
+ love triangle, Alex-as-Alex is forced to suffer an endless series of humiliations,
508
+ each one more absurd than the last. (c) Tribeca","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/94/11169486_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/94/11169486_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/94/11169486_det.jpg","original":"http://content8.flixster.com/movie/11/16/94/11169486_ori.jpg"},"abridged_cast":[{"name":"Alex
509
+ Karpovsky","id":"351525881"},{"name":"Jennifer Prediger","id":"771092347"},{"name":"Onur
510
+ Tukel","id":"770694381"},{"name":"Keith Poulson","id":"770839326"},{"name":"Dustin
511
+ Guy Defa","id":"771101560"}],"alternate_ids":{"imdb":"2147048"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309968.json","alternate":"http://www.rottentomatoes.com/m/red_flag_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309968/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309968/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309968/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771309968/similar.json"}},{"id":"771306559","title":"Kai
512
+ Po Che!","year":2013,"mpaa_rating":"Unrated","runtime":120,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_score":-1,"audience_score":46},"synopsis":"Synopsis:
513
+ Best friends Ishaan, Omi and Govind - young, ambitious and restless - are
514
+ trying to make a mark in the India of the early 2000''s. These are exciting
515
+ times - a new millennium has just dawned, India''s a nuclear power and ostensibly
516
+ shining - a perfect place for the 3 Ahmedabad boys to start a business that
517
+ could be their ticket to fame and riches. In a country where cricket is religion,
518
+ they hit upon a brilliant plan - to start a training academy that could produce
519
+ India''s next sporting superstars! What follows is without doubt the greatest
520
+ adventure of their lives, as they attempt to navigate the big hurdles in the
521
+ path of fulfilling their dreams. (c) UTV","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/46/11164686_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/46/11164686_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/46/11164686_det.jpg","original":"http://content8.flixster.com/movie/11/16/46/11164686_ori.jpg"},"abridged_cast":[{"name":"Sushant
522
+ Singh","id":"465972852","characters":["Ishaan"]},{"name":"Rajkumar Yadav","id":"771419026","characters":["Govind"]},{"name":"Amit
523
+ Sadh","id":"770908217","characters":["Omi"]},{"name":"Amrita Puri","id":"771433540","characters":["Vidya"]},{"name":"Raj
524
+ Kumar Yadav","id":"771106821"}],"alternate_ids":{"imdb":"2213054"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306559.json","alternate":"http://www.rottentomatoes.com/m/kai_po_che/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306559/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306559/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306559/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771306559/similar.json"}},{"id":"771305597","title":"Rubberneck","year":2013,"mpaa_rating":"Unrated","runtime":87,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_rating":"Fresh","critics_score":86,"audience_score":57},"synopsis":"Months
525
+ after a weekend fling, Boston research scientist Paul (Alex Karpovsky, \"Girls\")
526
+ continues to lust after his beautiful coworker Danielle (Jamie Ray Newman),
527
+ nurturing his fantasies with the occasional polite exchange at work. But once
528
+ she starts dating another scientist at their lab, his infatuation quickly
529
+ turns into obsession - and he finds himself unable to control his desires.
530
+ A slow-burn character study-turned-psychosexual thriller, co-written by Karpovsky
531
+ and Garth Donovan, RUBBERNECK is a chillingly believable story of workplace
532
+ romance gone wrong. (c) Tribeca","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/94/11169488_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/94/11169488_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/94/11169488_det.jpg","original":"http://content6.flixster.com/movie/11/16/94/11169488_ori.jpg"},"abridged_cast":[{"name":"Alex
533
+ Karpovsky","id":"351525881","characters":["Paul Harris"]},{"name":"Jaime Ray
534
+ Newman","id":"429040733","characters":["Danielle Jenkins"]},{"name":"Amanda
535
+ Good Hennessey","id":"771405946","characters":["Linda Burke"]},{"name":"Dennis
536
+ Staroselsky","id":"771406686","characters":["Chris Burke"]},{"name":"Dakota
537
+ Shepard","id":"771406687","characters":["Kathy"]}],"alternate_ids":{"imdb":"2292903"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305597.json","alternate":"http://www.rottentomatoes.com/m/rubberneck_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305597/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305597/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305597/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771305597/similar.json"}},{"id":"771313298","title":"Inescapable","year":2012,"mpaa_rating":"Unrated","runtime":90,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_rating":"Rotten","critics_score":17,"audience_score":70},"synopsis":"This
538
+ politically charged and emotionally powerful thriller follows a successful
539
+ businessman who suddenly finds his life turned upside down when his journalist
540
+ daughter goes missing during her trip to his hometown of Damascus. He knows
541
+ that the reason for his exile is tied to his daughter''s disappearance. His
542
+ first trip home in over 30 years turns into a frantic quest to rescue his
543
+ daughter while reconnecting with the love of his life.","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/63/11166352_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/63/11166352_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/63/11166352_det.jpg","original":"http://content6.flixster.com/movie/11/16/63/11166352_ori.jpg"},"abridged_cast":[{"name":"Alexander
544
+ Siddig","id":"427819122","characters":["Adib Abdel Kareem","Adib Abdul-Kareem"]},{"name":"Marisa
545
+ Tomei","id":"162662209","characters":["Fatima"]},{"name":"Jay Anstey","id":"771418797","characters":["Muna"]},{"name":"Joshua
546
+ Jackson","id":"162655084","characters":["Paul"]},{"name":"Oded Fehr","id":"162686459","characters":["Sayid"]}],"alternate_ids":{"imdb":"1844203"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313298.json","alternate":"http://www.rottentomatoes.com/m/inescapable_2012/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313298/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313298/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313298/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771313298/similar.json"}},{"id":"771324775","title":"Stand
547
+ Off","year":2013,"mpaa_rating":"R","runtime":89,"release_dates":{"theater":"2013-02-22","dvd":"2013-03-26"},"ratings":{"critics_score":-1,"audience_score":41},"synopsis":"In
548
+ a misguided attempt to protect his family and pay back gambling debts to the
549
+ local Mobster, Jimbo robs a fish market, which is coincidentally owned by
550
+ the same Mobster. On the run, Jimbo is cornered in a local curio shop, where
551
+ he takes hostage an assortment of colorful characters, including Maguire,
552
+ who may be his illegitimate father. Surrounded by the Police, the SAS, and
553
+ the Mobster''s crew, the young man must find a way out of his precarious predicament
554
+ with the help of his oddball capt","posters":{"thumbnail":"http://content8.flixster.com/movie/11/16/92/11169234_mob.jpg","profile":"http://content8.flixster.com/movie/11/16/92/11169234_pro.jpg","detailed":"http://content8.flixster.com/movie/11/16/92/11169234_det.jpg","original":"http://content8.flixster.com/movie/11/16/92/11169234_ori.jpg"},"abridged_cast":[{"name":"Brendan
555
+ Fraser","id":"162662763","characters":["Joe Maguire"]},{"name":"Colm Meaney","id":"162666522","characters":["Detective
556
+ Weller"]},{"name":"Martin McCann","id":"770699642","characters":["Jimbo"]},{"name":"Yaya
557
+ DaCosta","id":"770679601","characters":["Sophie"]},{"name":"David O''Hara","id":"162710729","characters":["Mad
558
+ Dog Flynn"]}],"alternate_ids":{"imdb":"1814865"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324775.json","alternate":"http://www.rottentomatoes.com/m/stand_off_2013/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324775/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324775/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324775/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771324775/similar.json"}},{"id":"771253546","title":"11
559
+ Flowers","year":2013,"mpaa_rating":"PG","runtime":110,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_score":-1,"audience_score":53},"synopsis":"One
560
+ of China''s foremost Sixth Generation directors, Wang Xiaoshuai (Beijing Bicycle,
561
+ Shanghai Dreams) tells a striking, autobiographical coming-of-age tale set
562
+ in the final days of China''s Cultural Revolution. Eleven-year-old Wang Han
563
+ lives with his family in a remote village in Guizhou province. When Wang is
564
+ selected to lead his school through their daily gymnastic regiment, his teacher
565
+ recommends that he wear a clean, new shirt in honor of this important position
566
+ - a request that forces his family to make a great sacrifice. (c) First Run
567
+ Features","posters":{"thumbnail":"http://content9.flixster.com/movie/11/16/44/11164411_mob.jpg","profile":"http://content9.flixster.com/movie/11/16/44/11164411_pro.jpg","detailed":"http://content9.flixster.com/movie/11/16/44/11164411_det.jpg","original":"http://content9.flixster.com/movie/11/16/44/11164411_ori.jpg"},"abridged_cast":[{"name":"Liu
568
+ Wenquing","id":"771383553","characters":["Wang Han"]},{"name":"Wang Jinchun","id":"771380698","characters":["Father"]},{"name":"Yen
569
+ Ni","id":"771381126","characters":["Mother"]},{"name":"Zhang Kexuan","id":"771437188","characters":["Louse"]},{"name":"Zhong
570
+ Guo Liuxing","id":"771437189","characters":["Mouse"]}],"alternate_ids":{"imdb":"2042432"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253546.json","alternate":"http://www.rottentomatoes.com/m/11_flowers/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253546/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253546/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253546/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771253546/similar.json"}},{"id":"771319180","title":"Future
571
+ Weather","year":2013,"mpaa_rating":"Unrated","runtime":100,"release_dates":{"theater":"2013-02-22","dvd":"2013-04-15"},"ratings":{"critics_score":-1,"audience_score":50},"synopsis":"Lauduree
572
+ (Haney-Jardine) is a 13-year-old loner passionate about nature and worried
573
+ about global warming. Greta (Amy Madigan), her grandmother, is a fiery nurse
574
+ jaded by alcohol and disappointment. When Lauduree is abruptly abandoned by
575
+ her dreamer single mom (Marin Ireland), she decides to take survival into
576
+ her own hands, forcing her and Greta to rethink their futures. Featuring humorous,
577
+ sharply drawn characters and powerful performances by Amy Madigan (Field of
578
+ Dreams, Gone Baby Gone), Lili Taylor (Say Anything, Six Feet Under), and rising
579
+ star Perla Haney-Jardine (Kill Bill Vol. 2, Spider-Man 3), Future Weather
580
+ is about finding the courage to survive change. (c) Lipstick Pictures in association
581
+ with First Pond Entertainment and Virgil Films","posters":{"thumbnail":"http://content6.flixster.com/movie/11/16/90/11169032_mob.jpg","profile":"http://content6.flixster.com/movie/11/16/90/11169032_pro.jpg","detailed":"http://content6.flixster.com/movie/11/16/90/11169032_det.jpg","original":"http://content6.flixster.com/movie/11/16/90/11169032_ori.jpg"},"abridged_cast":[{"name":"Perla
582
+ Haney-Jardine","id":"770696476","characters":["Lauduree"]},{"name":"Amy Madigan","id":"162680966","characters":["Greta"]},{"name":"Lili
583
+ Taylor","id":"162668140","characters":["Ms. Markovi"]},{"name":"William Sadler","id":"162668749","characters":["Ed"]},{"name":"Martin
584
+ Ireland","id":"771043382","characters":["Tanya"]}],"alternate_ids":{"imdb":"1701215"},"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771319180.json","alternate":"http://www.rottentomatoes.com/m/future_weather/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771319180/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771319180/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771319180/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771319180/similar.json"}},{"id":"771316290","title":"Doctor
585
+ Bello","year":2012,"mpaa_rating":"Unrated","runtime":90,"release_dates":{"theater":"2013-02-22"},"ratings":{"critics_score":-1,"audience_score":0},"synopsis":"An
586
+ uncertified African immigrant Doctor secretly cures the seven year old son
587
+ of a rich American couple suffering from brain cancer in a Manhattan New York
588
+ Hospital, and refuses to reveal the source of the miracle cure. He is therefore
589
+ jailed for medical malpractice and develops brain tumor himself with only
590
+ a few weeks to live. The African-American head of the Oncology Ward risks
591
+ everything to search for the miracle cure in Africa after he is suspended
592
+ for his part in the hospital protocol breach and abandoned by his bourgeois
593
+ wife.","posters":{"thumbnail":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","profile":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","detailed":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif","original":"http://images.rottentomatoescdn.com/images/redesign/poster_default.gif"},"abridged_cast":[],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316290.json","alternate":"http://www.rottentomatoes.com/m/771316290/","cast":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316290/cast.json","clips":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316290/clips.json","reviews":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316290/reviews.json","similar":"http://api.rottentomatoes.com/api/public/v1.0/movies/771316290/similar.json"}}],"links":{"self":"http://api.rottentomatoes.com/api/public/v1.0/lists/movies/opening.json?limit=16&country=us","alternate":"http://www.rottentomatoes.com/movie/opening.php"},"link_template":"http://api.rottentomatoes.com/api/public/v1.0/lists/movies/opening.json?limit={num_results}&country={country-code}"}
594
+
595
+ '
596
+ http_version:
597
+ recorded_at: Wed, 20 Feb 2013 15:31:47 GMT
598
+ recorded_with: VCR 2.4.0