kuva 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (160) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.env.example +4 -0
  4. data/.gitignore +13 -0
  5. data/.rspec +1 -0
  6. data/.ruby-gemset +1 -0
  7. data/.ruby-version +1 -0
  8. data/.travis.yml +12 -0
  9. data/Gemfile +26 -0
  10. data/Gemfile.lock +187 -0
  11. data/MIT-LICENSE +20 -0
  12. data/README.md +129 -0
  13. data/Rakefile +14 -0
  14. data/app/assets/images/kuva/.keep +0 -0
  15. data/app/assets/javascripts/kuva/application.js +13 -0
  16. data/app/assets/javascripts/kuva/jquery-2.1.0.min.js +4 -0
  17. data/app/assets/javascripts/kuva/jquery.justified_gallery.min.js +7 -0
  18. data/app/assets/javascripts/kuva/kuva.js.coffee +2 -0
  19. data/app/assets/stylesheets/kuva/application.css +13 -0
  20. data/app/assets/stylesheets/kuva/justified_gallery.min.css +7 -0
  21. data/app/assets/stylesheets/kuva/kuva.css.sass +42 -0
  22. data/app/controllers/kuva/application_controller.rb +17 -0
  23. data/app/controllers/kuva/photos_controller.rb +10 -0
  24. data/app/controllers/kuva/sets_controller.rb +24 -0
  25. data/app/helpers/kuva/application_helper.rb +31 -0
  26. data/app/views/kuva/photos/show.html.haml +6 -0
  27. data/app/views/kuva/sets/index.html.haml +8 -0
  28. data/app/views/kuva/sets/show.html.haml +8 -0
  29. data/app/views/layouts/kuva/application.html.haml +10 -0
  30. data/config/locales/cli.yml +8 -0
  31. data/config/locales/frontend.yml +4 -0
  32. data/config/routes.rb +9 -0
  33. data/kuva.gemspec +25 -0
  34. data/lib/generators/kuva/install_generator.rb +20 -0
  35. data/lib/generators/kuva/templates/kuva.rb +34 -0
  36. data/lib/generators/kuva/views_generator.rb +23 -0
  37. data/lib/kuva.rb +23 -0
  38. data/lib/kuva/authorizer.rb +50 -0
  39. data/lib/kuva/elements/photo.rb +41 -0
  40. data/lib/kuva/elements/photoset.rb +49 -0
  41. data/lib/kuva/elements/photoset_collection.rb +25 -0
  42. data/lib/kuva/elements/url_info.rb +6 -0
  43. data/lib/kuva/engine.rb +9 -0
  44. data/lib/kuva/version.rb +3 -0
  45. data/lib/tasks/kuva_task.rake +6 -0
  46. data/spec/controllers/kuva/application_controller_spec.rb +42 -0
  47. data/spec/controllers/kuva/photos_controller_spec.rb +22 -0
  48. data/spec/controllers/kuva/sets_controller_spec.rb +51 -0
  49. data/spec/dummy/README.md +1 -0
  50. data/spec/dummy/Rakefile +6 -0
  51. data/spec/dummy/app/assets/images/.keep +0 -0
  52. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  53. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  54. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  55. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  56. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  57. data/spec/dummy/app/mailers/.keep +0 -0
  58. data/spec/dummy/app/models/.keep +0 -0
  59. data/spec/dummy/app/models/concerns/.keep +0 -0
  60. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  61. data/spec/dummy/bin/bundle +3 -0
  62. data/spec/dummy/bin/rails +4 -0
  63. data/spec/dummy/bin/rake +4 -0
  64. data/spec/dummy/config.ru +4 -0
  65. data/spec/dummy/config/application.rb +30 -0
  66. data/spec/dummy/config/boot.rb +5 -0
  67. data/spec/dummy/config/database.yml +25 -0
  68. data/spec/dummy/config/environment.rb +5 -0
  69. data/spec/dummy/config/environments/development.rb +29 -0
  70. data/spec/dummy/config/environments/production.rb +80 -0
  71. data/spec/dummy/config/environments/test.rb +39 -0
  72. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  73. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  74. data/spec/dummy/config/initializers/inflections.rb +16 -0
  75. data/spec/dummy/config/initializers/kuva.rb +29 -0
  76. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  77. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  78. data/spec/dummy/config/initializers/session_store.rb +3 -0
  79. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  80. data/spec/dummy/config/locales/en.yml +23 -0
  81. data/spec/dummy/config/routes.rb +4 -0
  82. data/spec/dummy/lib/assets/.keep +0 -0
  83. data/spec/dummy/log/.keep +0 -0
  84. data/spec/dummy/public/404.html +58 -0
  85. data/spec/dummy/public/422.html +58 -0
  86. data/spec/dummy/public/500.html +57 -0
  87. data/spec/dummy/public/favicon.ico +0 -0
  88. data/spec/features/photo_spec.rb +40 -0
  89. data/spec/features/photoset_collection_spec.rb +25 -0
  90. data/spec/features/photoset_spec.rb +42 -0
  91. data/spec/generators/kuva/install_generator_spec.rb +30 -0
  92. data/spec/generators/kuva/views_generator_spec.rb +37 -0
  93. data/spec/helpers/kuva/application_helper_spec.rb +26 -0
  94. data/spec/kuva/authorizer_spec.rb +83 -0
  95. data/spec/kuva/elements/photo_spec.rb +76 -0
  96. data/spec/kuva/elements/photoset_collection_spec.rb +42 -0
  97. data/spec/kuva/elements/photoset_spec.rb +106 -0
  98. data/spec/kuva/elements/url_info_spec.rb +25 -0
  99. data/spec/kuva_spec.rb +81 -0
  100. data/spec/spec_helper.rb +68 -0
  101. data/spec/support/vcr/cassettes/Kuva_ApplicationController/configuring_Kuva/sets_the_API_key.yml +160 -0
  102. data/spec/support/vcr/cassettes/Kuva_ApplicationController/configuring_Kuva/sets_the_access_secret.yml +160 -0
  103. data/spec/support/vcr/cassettes/Kuva_ApplicationController/configuring_Kuva/sets_the_access_token.yml +160 -0
  104. data/spec/support/vcr/cassettes/Kuva_ApplicationHelper/_breadcrumbs_for/when_the_current_page_is_NOT_the_set_page/creates_a_breadcrumb_with_the_set_URL.yml +65 -0
  105. data/spec/support/vcr/cassettes/Kuva_ApplicationHelper/_breadcrumbs_for/when_the_current_page_is_the_set_page/creates_a_breadcrumb_without_the_set_URL.yml +222 -0
  106. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_find/fetches_the_photo_from_Flickr_specified_by_id.yml +95 -0
  107. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_find/instantiates_a_new_Kuva_Elements_Photo_object.yml +252 -0
  108. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/does_NOT_set_the_is_primary_boolean.yml +252 -0
  109. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/returns_itself.yml +95 -0
  110. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/saves_a_reference_to_the_description.yml +95 -0
  111. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/saves_a_reference_to_the_farm.yml +95 -0
  112. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/saves_a_reference_to_the_id.yml +95 -0
  113. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/saves_a_reference_to_the_secret.yml +95 -0
  114. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/saves_a_reference_to_the_server.yml +252 -0
  115. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/_initialize/saves_a_reference_to_the_title.yml +95 -0
  116. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/image_URLs/generates_an_image_URL_for_a_default_sized_medium_image.yml +95 -0
  117. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/image_URLs/generates_an_image_URL_for_a_n-sized_small_320_image.yml +252 -0
  118. data/spec/support/vcr/cassettes/Kuva_Elements_Photo/image_URLs/instantiates_a_new_URL_info_object_to_create_image_URLs.yml +95 -0
  119. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_find/fetches_the_photoset_from_Flickr_specified_by_id.yml +65 -0
  120. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_find/instantiates_a_new_Kuva_Elements_Photoset_object.yml +65 -0
  121. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_image_url/generates_an_image_URL_for_a_large_square_image.yml +65 -0
  122. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_image_url/instantiates_a_new_URL_info_object_to_create_an_image_URL.yml +222 -0
  123. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/returns_itself.yml +65 -0
  124. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_created_at_date.yml +65 -0
  125. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_description.yml +65 -0
  126. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_farm.yml +65 -0
  127. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_id.yml +65 -0
  128. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_number_of_photos.yml +65 -0
  129. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_number_of_views.yml +65 -0
  130. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_primary_id.yml +222 -0
  131. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_secret.yml +65 -0
  132. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_server.yml +65 -0
  133. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_title.yml +222 -0
  134. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_initialize/saves_a_reference_to_the_updated_at_date.yml +65 -0
  135. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_with_photos/returns_an_array.yml +162 -0
  136. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_with_photos/returns_an_array_with_the_size_specified_by_number_of_photos.yml +162 -0
  137. data/spec/support/vcr/cassettes/Kuva_Elements_Photoset/_with_photos/wraps_the_photos_into_a_Kuva_Elements_Photo_element.yml +319 -0
  138. data/spec/support/vcr/cassettes/Kuva_Elements_PhotosetCollection/_photosets/retrieves_all_photosets.yml +2761 -0
  139. data/spec/support/vcr/cassettes/Kuva_Elements_PhotosetCollection/_photosets/returns_an_array.yml +2918 -0
  140. data/spec/support/vcr/cassettes/Kuva_Elements_PhotosetCollection/_photosets/wraps_the_photosets_into_a_Kuva_Elements_Photoset_element.yml +2761 -0
  141. data/spec/support/vcr/cassettes/Kuva_Elements_PhotosetCollection/_retrieve/fetches_all_photosets_from_Flickr.yml +2918 -0
  142. data/spec/support/vcr/cassettes/Kuva_Elements_PhotosetCollection/_retrieve/instantiates_a_new_Kuva_Elements_PhotosetCollection_object.yml +2761 -0
  143. data/spec/support/vcr/cassettes/Kuva_PhotosController/_show/assigns_the_photo.yml +314 -0
  144. data/spec/support/vcr/cassettes/Kuva_PhotosController/_show/finds_the_photo.yml +157 -0
  145. data/spec/support/vcr/cassettes/Kuva_SetsController/_index/assigns_the_photoset_collection_with_photosets.yml +2761 -0
  146. data/spec/support/vcr/cassettes/Kuva_SetsController/_index/knows_its_type.yml +2918 -0
  147. data/spec/support/vcr/cassettes/Kuva_SetsController/_index/retrieves_the_entire_photoset_collection.yml +160 -0
  148. data/spec/support/vcr/cassettes/Kuva_SetsController/_show/assigns_the_photos_of_the_specified_photoset.yml +2858 -0
  149. data/spec/support/vcr/cassettes/Kuva_SetsController/_show/finds_the_specified_photoset_within_the_entire_photoset_collection.yml +2858 -0
  150. data/spec/support/vcr/cassettes/Kuva_SetsController/_show/knows_its_type.yml +2858 -0
  151. data/spec/support/vcr/cassettes/photo/navigating_back_to_the_photoset_page.yml +3169 -0
  152. data/spec/support/vcr/cassettes/photo/viewing_the_first_photo_of_the_photoset.yml +157 -0
  153. data/spec/support/vcr/cassettes/photoset/navigating_back_to_the_photoset_collection_page.yml +5616 -0
  154. data/spec/support/vcr/cassettes/photoset/navigating_to_the_page_with_details_of_the_first_photo.yml +3012 -0
  155. data/spec/support/vcr/cassettes/photoset/viewing_the_first_photo_of_the_photoset.yml +314 -0
  156. data/spec/support/vcr/cassettes/photoset/viewing_the_first_photoset_of_the_photoset_collection.yml +3015 -0
  157. data/spec/support/vcr/cassettes/photoset_collection/navigating_to_the_page_with_photos_of_the_first_photoset.yml +5616 -0
  158. data/spec/support/vcr/cassettes/photoset_collection/viewing_the_photoset_collection.yml +2761 -0
  159. data/spec/support/vcr/vcr.rb +17 -0
  160. metadata +398 -0
@@ -0,0 +1,2761 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.flickr.com/services/rest/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: method=flickr.photosets.getList&format=json&nojsoncallback=1
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - '*/*'
14
+ User-Agent:
15
+ - FlickRaw/0.9.8
16
+ Authorization:
17
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
18
+ oauth_nonce="saxw%2FiZjonr1M8%2BWx53bLxKXKodDnmyA415G2qXsF8U%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421382", oauth_token="<KUVA_ACCESS_TOKEN>",
20
+ oauth_version="1.0"
21
+ Content-Type:
22
+ - application/x-www-form-urlencoded
23
+ response:
24
+ status:
25
+ code: 200
26
+ message: OK
27
+ headers:
28
+ Date:
29
+ - Sun, 13 Apr 2014 20:36:22 GMT
30
+ P3p:
31
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
32
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
33
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
34
+ Cache-Control:
35
+ - private
36
+ X-Served-By:
37
+ - www208.flickr.bf1.yahoo.com
38
+ Vary:
39
+ - Accept-Encoding
40
+ Content-Length:
41
+ - '4368'
42
+ Content-Type:
43
+ - application/json
44
+ Age:
45
+ - '0'
46
+ Via:
47
+ - http/1.1 fts120.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
49
+ Server:
50
+ - ATS
51
+ Connection:
52
+ - keep-alive
53
+ body:
54
+ encoding: UTF-8
55
+ string: '{"photosets":{"cancreate":1, "page":1, "pages":1, "perpage":40, "total":40,
56
+ "photoset":[{"id":"72157632367381040", "primary":"8318972536", "secret":"eda82f692f",
57
+ "server":"8499", "farm":9, "photos":"28", "videos":0, "title":{"_content":"Paris"},
58
+ "description":{"_content":"These shots were taken in Paris, France in December
59
+ 2012. Most of them are taken with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina
60
+ 12-24mm f\/4."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"31",
61
+ "count_comments":"0", "can_comment":1, "date_create":"1356715289", "date_update":"1356717162"},
62
+ {"id":"72157632303248759", "primary":"8294626229", "secret":"7b8aaeab2b",
63
+ "server":"8081", "farm":9, "photos":"69", "videos":0, "title":{"_content":"Bali"},
64
+ "description":{"_content":"These shots were taken on Bali in May 2012. Most
65
+ of them are taken with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm
66
+ f\/4."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"21",
67
+ "count_comments":"0", "can_comment":1, "date_create":"1356131625", "date_update":"1356189559"},
68
+ {"id":"72157629017578067", "primary":"6757041485", "secret":"643ba72439",
69
+ "server":"7163", "farm":8, "photos":"69", "videos":0, "title":{"_content":"Aruba"},
70
+ "description":{"_content":"These shots were taken on Aruba (One Happy Island)
71
+ in March 2011. Most of them are taken with my Nikon D80 and Tokina 12-24mm
72
+ f\/4.\n\nObviously it''s Aruba from a different point of view."}, "needs_interstitial":0,
73
+ "visibility_can_see_set":1, "count_views":"73", "count_comments":"4", "can_comment":1,
74
+ "date_create":"1327442512", "date_update":"1356165010"}, {"id":"72157628378160739",
75
+ "primary":"6495153913", "secret":"1ba1b324ef", "server":"7145", "farm":8,
76
+ "photos":"51", "videos":0, "title":{"_content":"Carnaval di Aruba ''11"},
77
+ "description":{"_content":"These shots were taken in and around Oranjestad,
78
+ Aruba during the Carnival in March 2011."}, "needs_interstitial":0, "visibility_can_see_set":1,
79
+ "count_views":"89", "count_comments":"0", "can_comment":1, "date_create":"1323640679",
80
+ "date_update":"1356165010"}, {"id":"72157625433863013", "primary":"5245419190",
81
+ "secret":"54cdd111fd", "server":"5282", "farm":6, "photos":"10", "videos":0,
82
+ "title":{"_content":"Zoom Experience ''10"}, "description":{"_content":"These
83
+ shots were taken at the Zoom Experience 2010 in the Jaarbeurs, Utrecht. They
84
+ all feature the model Suraya."}, "needs_interstitial":0, "visibility_can_see_set":1,
85
+ "count_views":"123", "count_comments":"0", "can_comment":1, "date_create":"1291854812",
86
+ "date_update":"1356165009"}, {"id":"72157625523500610", "primary":"5230378378",
87
+ "secret":"fecddda258", "server":"5242", "farm":6, "photos":"30", "videos":0,
88
+ "title":{"_content":"The Hague"}, "description":{"_content":"These shots were
89
+ taken on a sunny afternoon in the centre of The Hague, The Netherlands. Most
90
+ of them have been taken in or around the Binnenhof, where the Dutch parliament
91
+ resides."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"47",
92
+ "count_comments":"0", "can_comment":1, "date_create":"1291422677", "date_update":"1356165010"},
93
+ {"id":"72157624624572356", "primary":"4847033367", "secret":"f455849b72",
94
+ "server":"4146", "farm":5, "photos":"57", "videos":0, "title":{"_content":"Zomer
95
+ Carnaval ''10"}, "description":{"_content":"These shots were taken at the
96
+ Ortel Zomer Carnaval 2010 in Rotterdam. Most of them were taken with my Nikon
97
+ 50 mm f\/1.8D at Leuvehaven and some of them were taken with my Nikon 70-300mm
98
+ f4.5-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"266",
99
+ "count_comments":"0", "can_comment":1, "date_create":"1280613448", "date_update":"1356165011"},
100
+ {"id":"72157623902001333", "primary":"4593271974", "secret":"d2482de61a",
101
+ "server":"3544", "farm":4, "photos":"47", "videos":0, "title":{"_content":"5
102
+ Mei Festival"}, "description":{"_content":"A festival in The Hague on May
103
+ 5th, which is Liberation Day in The Netherlands. \n\nIn this set you''ll be
104
+ able to view the following artists: Winne, Jurk and Mischu Laikah."}, "needs_interstitial":0,
105
+ "visibility_can_see_set":1, "count_views":"71", "count_comments":"0", "can_comment":1,
106
+ "date_create":"1273437402", "date_update":"1356165010"}, {"id":"72157623700320221",
107
+ "primary":"4507629959", "secret":"42bce98099", "server":"2726", "farm":3,
108
+ "photos":"23", "videos":0, "title":{"_content":"Val Thorens"}, "description":{"_content":"Most
109
+ of these shots were taken in Val Thorens, France with a Nikon D80."}, "needs_interstitial":0,
110
+ "visibility_can_see_set":1, "count_views":"89", "count_comments":"0", "can_comment":1,
111
+ "date_create":"1270915823", "date_update":"1356165010"}, {"id":"72157622678558767",
112
+ "primary":"4103218587", "secret":"4c8bdd07b5", "server":"2631", "farm":3,
113
+ "photos":"40", "videos":0, "title":{"_content":"Zoom Experience ''09"}, "description":{"_content":"Zoom
114
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
115
+ in Utrecht by the Zoom.nl magazine."}, "needs_interstitial":0, "visibility_can_see_set":1,
116
+ "count_views":"153", "count_comments":"0", "can_comment":1, "date_create":"1258229906",
117
+ "date_update":"1356165010"}, {"id":"72157622216400117", "primary":"3910073517",
118
+ "secret":"2ee8ba3d74", "server":"2631", "farm":3, "photos":"152", "videos":0,
119
+ "title":{"_content":"Rome"}, "description":{"_content":"Most of these shots
120
+ were taken in Rome, Italy with my Nikkor 50 mm f\/1.8. The others were taken
121
+ with the Nikkor 55-200 mm f\/4.0-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1,
122
+ "count_views":"108", "count_comments":"0", "can_comment":1, "date_create":"1252704238",
123
+ "date_update":"1356165011"}, {"id":"72157622251601466", "primary":"3889860224",
124
+ "secret":"9333bbc160", "server":"2435", "farm":3, "photos":"81", "videos":0,
125
+ "title":{"_content":"Rome (UWA)"}, "description":{"_content":"These shots
126
+ were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide Angle
127
+ lens, in Rome, Italy."}, "needs_interstitial":0, "visibility_can_see_set":1,
128
+ "count_views":"234", "count_comments":"0", "can_comment":1, "date_create":"1252152755",
129
+ "date_update":"1356165011"}, {"id":"72157622042947321", "primary":"3865054146",
130
+ "secret":"e5d907bd9a", "server":"2637", "farm":3, "photos":"27", "videos":0,
131
+ "title":{"_content":"Madurodam At Night"}, "description":{"_content":"These
132
+ shots were taken during the evening at Madurodam, Scheveningen. "}, "needs_interstitial":0,
133
+ "visibility_can_see_set":1, "count_views":"93", "count_comments":"0", "can_comment":1,
134
+ "date_create":"1251468756", "date_update":"1356165010"}, {"id":"72157622067739660",
135
+ "primary":"3843992302", "secret":"e0fc5eb971", "server":"2608", "farm":3,
136
+ "photos":"76", "videos":0, "title":{"_content":"Streetmasters ''09"}, "description":{"_content":"Streetmasters
137
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
138
+ breakdancers, streetdancers and streetsoccer players. As of the 2009 edition
139
+ there also is a freerunners dicipline."}, "needs_interstitial":0, "visibility_can_see_set":1,
140
+ "count_views":"137", "count_comments":"0", "can_comment":1, "date_create":"1250543322",
141
+ "date_update":"1356165011"}, {"id":"72157621986269708", "primary":"3802687475",
142
+ "secret":"7007c87d22", "server":"3493", "farm":4, "photos":"21", "videos":0,
143
+ "title":{"_content":"Fit For Free Dance Parade"}, "description":{"_content":"The
144
+ Fit For Free Dance Parade is a parade of trucks with DJ''s and dancers on
145
+ them, which goes straight through Rotterdam."}, "needs_interstitial":0, "visibility_can_see_set":1,
146
+ "count_views":"97", "count_comments":"0", "can_comment":1, "date_create":"1249803502",
147
+ "date_update":"1356165009"}, {"id":"72157621709918913", "primary":"3757528316",
148
+ "secret":"a20bd0c139", "server":"2610", "farm":3, "photos":"58", "videos":0,
149
+ "title":{"_content":"Zomer Carnaval ''09"}, "description":{"_content":"These
150
+ shots were taken at the Ortel Zomer Carnaval 2009 in Rotterdam. They were
151
+ al taken with my Nikon 50 mm f\/1.8D at the Coolsingel."}, "needs_interstitial":0,
152
+ "visibility_can_see_set":1, "count_views":"290", "count_comments":"0", "can_comment":1,
153
+ "date_create":"1248592969", "date_update":"1356165010"}, {"id":"72157621226409953",
154
+ "primary":"3713875609", "secret":"4b441bf691", "server":"3474", "farm":4,
155
+ "photos":"15", "videos":0, "title":{"_content":"North Sea Round Town"}, "description":{"_content":"North
156
+ Sea Round Town is the warming-up of the North Sea Jazz Festival in Rotterdam."},
157
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"124", "count_comments":"0",
158
+ "can_comment":1, "date_create":"1247436891", "date_update":"1356165010"},
159
+ {"id":"72157620266565933", "primary":"3654106253", "secret":"3b5eca01e6",
160
+ "server":"3394", "farm":4, "photos":"186", "videos":0, "title":{"_content":"New
161
+ York City"}, "description":{"_content":"These shots were taken with my Nikon
162
+ D80 and the Nikkor 50mm f\/1.8D in New York City, USA. Some of the shots were
163
+ taken with the Nikkor 55-200mm f\/4-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1,
164
+ "count_views":"491", "count_comments":"0", "can_comment":1, "date_create":"1245782076",
165
+ "date_update":"1356165013"}, {"id":"72157619874753455", "primary":"3643159571",
166
+ "secret":"f7623d5eaf", "server":"3570", "farm":4, "photos":"133", "videos":0,
167
+ "title":{"_content":"New York City (UWA)"}, "description":{"_content":"These
168
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
169
+ Angle lens, in New York City, USA."}, "needs_interstitial":0, "visibility_can_see_set":1,
170
+ "count_views":"401", "count_comments":"0", "can_comment":1, "date_create":"1245423559",
171
+ "date_update":"1356165011"}, {"id":"72157618789715578", "primary":"3563736117",
172
+ "secret":"482e7889db", "server":"3656", "farm":4, "photos":"13", "videos":0,
173
+ "title":{"_content":"Antwerp"}, "description":{"_content":"Shots I''ve taken
174
+ in Antwerp."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"47",
175
+ "count_comments":"0", "can_comment":1, "date_create":"1243286961", "date_update":"1356165009"},
176
+ {"id":"72157617813232989", "primary":"3515445170", "secret":"468e074632",
177
+ "server":"3356", "farm":4, "photos":"3", "videos":0, "title":{"_content":"Night
178
+ At The Docks"}, "description":{"_content":"These shots were taken at the docks
179
+ of Rotterdam. We were standing near the Maas."}, "needs_interstitial":0, "visibility_can_see_set":1,
180
+ "count_views":"31", "count_comments":"0", "can_comment":1, "date_create":"1241870453",
181
+ "date_update":"1356165009"}, {"id":"72157611834597247", "primary":"3149804427",
182
+ "secret":"0b95ff03f7", "server":"3101", "farm":4, "photos":"20", "videos":0,
183
+ "title":{"_content":"Red Bull Knock Out"}, "description":{"_content":"The
184
+ Red Bull Knockout took place in Scheveningen, the Netherlands on November
185
+ 16th. These shots were taken there."}, "needs_interstitial":0, "visibility_can_see_set":1,
186
+ "count_views":"103", "count_comments":"0", "can_comment":1, "date_create":"1230641381",
187
+ "date_update":"1356165009"}, {"id":"72157608768338052", "primary":"3070765188",
188
+ "secret":"28b8fa5d38", "server":"3201", "farm":4, "photos":"35", "videos":0,
189
+ "title":{"_content":"Zoom Experience ''08"}, "description":{"_content":"Zoom
190
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
191
+ in Utrecht by the Zoom.nl magazine."}, "needs_interstitial":0, "visibility_can_see_set":1,
192
+ "count_views":"383", "count_comments":"0", "can_comment":1, "date_create":"1226182293",
193
+ "date_update":"1356165010"}, {"id":"72157607994521912", "primary":"2938539715",
194
+ "secret":"683e0092c3", "server":"3025", "farm":4, "photos":"12", "videos":0,
195
+ "title":{"_content":"100% Tuning"}, "description":{"_content":"100% Tuning
196
+ is the largest indoor tuning event in Holland. This year was the 5th edition
197
+ of 100% Tuning in Ahoy Rotterdam."}, "needs_interstitial":0, "visibility_can_see_set":1,
198
+ "count_views":"1169", "count_comments":"0", "can_comment":1, "date_create":"1223927875",
199
+ "date_update":"1356165009"}, {"id":"72157607752895562", "primary":"2914332291",
200
+ "secret":"fd4400f0dd", "server":"3248", "farm":4, "photos":"17", "videos":0,
201
+ "title":{"_content":"Training Feijenoord"}, "description":{"_content":"These
202
+ photos were taken on a saturday at De Kuip in Rotterdam. The selection of
203
+ Feijenoord 1 was training there at the moment."}, "needs_interstitial":0,
204
+ "visibility_can_see_set":1, "count_views":"101", "count_comments":"0", "can_comment":1,
205
+ "date_create":"1223214961", "date_update":"1356165012"}, {"id":"72157607757878689",
206
+ "primary":"2914105201", "secret":"ae046eb2ea", "server":"3090", "farm":4,
207
+ "photos":"15", "videos":0, "title":{"_content":"Rotterdam Road Races"}, "description":{"_content":"The
208
+ Rotterdam Road Races is an event with several races like the Fortis 1\/2 Marathon
209
+ Rotterdam, AD 10 Km Loop and Rotterdam on Wheels."}, "needs_interstitial":0,
210
+ "visibility_can_see_set":1, "count_views":"41", "count_comments":"0", "can_comment":1,
211
+ "date_create":"1223208582", "date_update":"1356165012"}, {"id":"72157607755852863",
212
+ "primary":"2914800312", "secret":"eac896c089", "server":"3197", "farm":4,
213
+ "photos":"19", "videos":0, "title":{"_content":"Streetmasters ''08"}, "description":{"_content":"Streetmasters
214
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
215
+ breakdancers and streetdancers. This was the finale at Westblaak in Rotterdam."},
216
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"61", "count_comments":"0",
217
+ "can_comment":1, "date_create":"1223203353", "date_update":"1356165012"},
218
+ {"id":"72157607733513100", "primary":"2912489161", "secret":"d2fb34f716",
219
+ "server":"3105", "farm":4, "photos":"24", "videos":0, "title":{"_content":"Diergaarde
220
+ Blijdorp"}, "description":{"_content":"Rotterdam Zoo: Diergaarde Blijdorp"},
221
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"67", "count_comments":"0",
222
+ "can_comment":1, "date_create":"1223156815", "date_update":"1356165012"},
223
+ {"id":"72157607758936165", "primary":"2914184769", "secret":"26ca769e6a",
224
+ "server":"3100", "farm":4, "photos":"23", "videos":0, "title":{"_content":"I
225
+ (heart) Threadless"}, "description":{"_content":"Photos from our so-called
226
+ &quot;I (heart) Threadless&quot; photoshoot for our profile on the Threadless
227
+ website. It took place under the Brienenoordbrug in Rotterdam."}, "needs_interstitial":0,
228
+ "visibility_can_see_set":1, "count_views":"65", "count_comments":"0", "can_comment":1,
229
+ "date_create":"1223211099", "date_update":"1356165013"}, {"id":"72157604876037835",
230
+ "primary":"3514636763", "secret":"f13062d9e4", "server":"3317", "farm":4,
231
+ "photos":"16", "videos":0, "title":{"_content":"Me, Myself & I"}, "description":{"_content":"The
232
+ title of this set says it all. These are obviously selfportrets or images
233
+ of me made by other people."}, "needs_interstitial":0, "visibility_can_see_set":1,
234
+ "count_views":"330", "count_comments":"0", "can_comment":1, "date_create":"1209896547",
235
+ "date_update":"1356165012"}, {"id":"72157613432665353", "primary":"3831523902",
236
+ "secret":"9cf20046e1", "server":"3534", "farm":4, "photos":"33", "videos":0,
237
+ "title":{"_content":"Portraits"}, "description":{"_content":"Portraits of
238
+ people."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"64",
239
+ "count_comments":"0", "can_comment":1, "date_create":"1233996281", "date_update":"1356165012"},
240
+ {"id":"72157607956377672", "primary":"2933987351", "secret":"22ce24ddf9",
241
+ "server":"3179", "farm":4, "photos":"21", "videos":0, "title":{"_content":"Egypt"},
242
+ "description":{"_content":"In August 2008 I went to Sharm El-Sheikh, Egypt
243
+ with my brother. We''ve also visited Cairo while we were there. All of these
244
+ were taken with my Fujifilm FinePix s9600 (which I''ve sold)."}, "needs_interstitial":0,
245
+ "visibility_can_see_set":1, "count_views":"86", "count_comments":"0", "can_comment":1,
246
+ "date_create":"1223824830", "date_update":"1356165012"}, {"id":"72157607747813484",
247
+ "primary":"2914660920", "secret":"577a301104", "server":"3190", "farm":4,
248
+ "photos":"11", "videos":0, "title":{"_content":"Wereld havendagen"}, "description":{"_content":"The
249
+ world harbor day is a large event in Rotterdam. It is meant to show what takes
250
+ place in Europe''s biggest port."}, "needs_interstitial":0, "visibility_can_see_set":1,
251
+ "count_views":"21", "count_comments":"0", "can_comment":1, "date_create":"1223197948",
252
+ "date_update":"1356165012"}, {"id":"72157608065768431", "primary":"3260304504",
253
+ "secret":"b566f0c1fa", "server":"3403", "farm":4, "photos":"8", "videos":0,
254
+ "title":{"_content":"Gadgets & Gear"}, "description":{"_content":"This set
255
+ contains photos from my gadgets, gear and other shots that fit this set."},
256
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"315", "count_comments":"0",
257
+ "can_comment":1, "date_create":"1224100790", "date_update":"1356165012"},
258
+ {"id":"72157602136210676", "primary":"2463323643", "secret":"49c99715da",
259
+ "server":"2393", "farm":3, "photos":"9", "videos":0, "title":{"_content":"Cars"},
260
+ "description":{"_content":"The photos in this set are of my cars. The first
261
+ are from my Honda Civic 1.5 LSi ''93, which I''ve sold in the meanwhile. The
262
+ other photos are from my BMW 316i Compact from ''98, which I currently own."},
263
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"154", "count_comments":"0",
264
+ "can_comment":1, "date_create":"1190657188", "date_update":"1356165012"},
265
+ {"id":"72157609118757238", "primary":"2979327772", "secret":"1709ca8191",
266
+ "server":"3048", "farm":4, "photos":"101", "videos":0, "title":{"_content":"Bokeh"},
267
+ "description":{"_content":"Photographs that I''ve taken with out-of-focus
268
+ areas in it produced by a shallow depth of field."}, "needs_interstitial":0,
269
+ "visibility_can_see_set":1, "count_views":"79", "count_comments":"0", "can_comment":1,
270
+ "date_create":"1226764945", "date_update":"1356165012"}, {"id":"72157608164792364",
271
+ "primary":"2955114833", "secret":"7322751b77", "server":"3029", "farm":4,
272
+ "photos":"26", "videos":0, "title":{"_content":"Selective Colors"}, "description":{"_content":"This
273
+ set contains photos that are mainly black and white with a selective color."},
274
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"46", "count_comments":"0",
275
+ "can_comment":1, "date_create":"1224414579", "date_update":"1356165012"},
276
+ {"id":"72157608177901148", "primary":"3643167761", "secret":"32da16b737",
277
+ "server":"2465", "farm":3, "photos":"208", "videos":0, "title":{"_content":"Black
278
+ & White"}, "description":{"_content":"The title of this set is pretty self
279
+ explanatory, but just to make it more clear... it contains black and white
280
+ photographs."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"43",
281
+ "count_comments":"0", "can_comment":1, "date_create":"1224448207", "date_update":"1356165013"},
282
+ {"id":"72157609130124623", "primary":"3031746973", "secret":"179aa08c2e",
283
+ "server":"3294", "farm":4, "photos":"8", "videos":0, "title":{"_content":"Product
284
+ Photography"}, "description":{"_content":""}, "needs_interstitial":0, "visibility_can_see_set":1,
285
+ "count_views":"35", "count_comments":"0", "can_comment":1, "date_create":"1226763941",
286
+ "date_update":"1356165012"}, {"id":"72157600303479345", "primary":"2464410072",
287
+ "secret":"99a2e64e3e", "server":"2272", "farm":3, "photos":"7", "videos":0,
288
+ "title":{"_content":"Nature"}, "description":{"_content":"Flora, fauna and
289
+ landscapes."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"54",
290
+ "count_comments":"0", "can_comment":1, "date_create":"1180873266", "date_update":"1356165017"}]},
291
+ "stat":"ok"}'
292
+ http_version:
293
+ recorded_at: Sun, 13 Apr 2014 20:36:22 GMT
294
+ - request:
295
+ method: post
296
+ uri: https://api.flickr.com/services/rest/
297
+ body:
298
+ encoding: US-ASCII
299
+ string: photoset_id=72157632367381040&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
300
+ headers:
301
+ Accept-Encoding:
302
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
303
+ Accept:
304
+ - '*/*'
305
+ User-Agent:
306
+ - FlickRaw/0.9.8
307
+ Authorization:
308
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
309
+ oauth_nonce="XLbqmzwKuqbOdyfBBkxySXdM8s9%2BuEJ4e%2FltnG9xbVo%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
310
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421382", oauth_token="<KUVA_ACCESS_TOKEN>",
311
+ oauth_version="1.0"
312
+ Content-Type:
313
+ - application/x-www-form-urlencoded
314
+ response:
315
+ status:
316
+ code: 200
317
+ message: OK
318
+ headers:
319
+ Date:
320
+ - Sun, 13 Apr 2014 20:36:22 GMT
321
+ P3p:
322
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
323
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
324
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
325
+ Cache-Control:
326
+ - private
327
+ X-Served-By:
328
+ - www38.flickr.bf1.yahoo.com
329
+ Vary:
330
+ - Accept-Encoding
331
+ Content-Length:
332
+ - '364'
333
+ Content-Type:
334
+ - application/json
335
+ Age:
336
+ - '0'
337
+ Via:
338
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
339
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
340
+ Server:
341
+ - ATS
342
+ Connection:
343
+ - keep-alive
344
+ body:
345
+ encoding: UTF-8
346
+ string: '{"photoset":{"id":"72157632367381040", "owner":"8558751@N06", "username":"ktnl",
347
+ "primary":"8318972536", "secret":"eda82f692f", "server":"8499", "farm":9,
348
+ "photos":28, "count_views":"31", "count_comments":"0", "count_photos":"28",
349
+ "count_videos":0, "title":{"_content":"Paris"}, "description":{"_content":"These
350
+ shots were taken in Paris, France in December 2012. Most of them are taken
351
+ with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "can_comment":1,
352
+ "date_create":"1356715289", "date_update":"1356717162", "coverphoto_server":"0",
353
+ "coverphoto_farm":0}, "stat":"ok"}'
354
+ http_version:
355
+ recorded_at: Sun, 13 Apr 2014 20:36:22 GMT
356
+ - request:
357
+ method: post
358
+ uri: https://api.flickr.com/services/rest/
359
+ body:
360
+ encoding: US-ASCII
361
+ string: photoset_id=72157632303248759&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
362
+ headers:
363
+ Accept-Encoding:
364
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
365
+ Accept:
366
+ - '*/*'
367
+ User-Agent:
368
+ - FlickRaw/0.9.8
369
+ Authorization:
370
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
371
+ oauth_nonce="5Te0D%2BWwrdhsvgUHS9LFXrqWTDEK7%2BukmvglnYlTyAA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
372
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421382", oauth_token="<KUVA_ACCESS_TOKEN>",
373
+ oauth_version="1.0"
374
+ Content-Type:
375
+ - application/x-www-form-urlencoded
376
+ response:
377
+ status:
378
+ code: 200
379
+ message: OK
380
+ headers:
381
+ Date:
382
+ - Sun, 13 Apr 2014 20:36:23 GMT
383
+ P3p:
384
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
385
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
386
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
387
+ Cache-Control:
388
+ - private
389
+ X-Served-By:
390
+ - www295.flickr.bf1.yahoo.com
391
+ Vary:
392
+ - Accept-Encoding
393
+ Content-Length:
394
+ - '354'
395
+ Content-Type:
396
+ - application/json
397
+ Age:
398
+ - '0'
399
+ Via:
400
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
401
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
402
+ Server:
403
+ - ATS
404
+ Connection:
405
+ - keep-alive
406
+ body:
407
+ encoding: UTF-8
408
+ string: '{"photoset":{"id":"72157632303248759", "owner":"8558751@N06", "username":"ktnl",
409
+ "primary":"8294626229", "secret":"7b8aaeab2b", "server":"8081", "farm":9,
410
+ "photos":69, "count_views":"21", "count_comments":"0", "count_photos":"69",
411
+ "count_videos":0, "title":{"_content":"Bali"}, "description":{"_content":"These
412
+ shots were taken on Bali in May 2012. Most of them are taken with my Nikon
413
+ D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "can_comment":1, "date_create":"1356131625",
414
+ "date_update":"1356189559", "coverphoto_server":"0", "coverphoto_farm":0},
415
+ "stat":"ok"}'
416
+ http_version:
417
+ recorded_at: Sun, 13 Apr 2014 20:36:23 GMT
418
+ - request:
419
+ method: post
420
+ uri: https://api.flickr.com/services/rest/
421
+ body:
422
+ encoding: US-ASCII
423
+ string: photoset_id=72157629017578067&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
424
+ headers:
425
+ Accept-Encoding:
426
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
427
+ Accept:
428
+ - '*/*'
429
+ User-Agent:
430
+ - FlickRaw/0.9.8
431
+ Authorization:
432
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
433
+ oauth_nonce="xVb4ZI2CxapBs8mfeFVIxWkaOcZWjLTpmR12JqmAtfE%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
434
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421383", oauth_token="<KUVA_ACCESS_TOKEN>",
435
+ oauth_version="1.0"
436
+ Content-Type:
437
+ - application/x-www-form-urlencoded
438
+ response:
439
+ status:
440
+ code: 200
441
+ message: OK
442
+ headers:
443
+ Date:
444
+ - Sun, 13 Apr 2014 20:36:23 GMT
445
+ P3p:
446
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
447
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
448
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
449
+ Cache-Control:
450
+ - private
451
+ X-Served-By:
452
+ - www293.flickr.bf1.yahoo.com
453
+ Vary:
454
+ - Accept-Encoding
455
+ Content-Length:
456
+ - '405'
457
+ Content-Type:
458
+ - application/json
459
+ Age:
460
+ - '0'
461
+ Via:
462
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
463
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
464
+ Server:
465
+ - ATS
466
+ Connection:
467
+ - keep-alive
468
+ body:
469
+ encoding: UTF-8
470
+ string: '{"photoset":{"id":"72157629017578067", "owner":"8558751@N06", "username":"ktnl",
471
+ "primary":"6757041485", "secret":"643ba72439", "server":"7163", "farm":8,
472
+ "photos":69, "count_views":"73", "count_comments":"4", "count_photos":"69",
473
+ "count_videos":0, "title":{"_content":"Aruba"}, "description":{"_content":"These
474
+ shots were taken on Aruba (One Happy Island) in March 2011. Most of them are
475
+ taken with my Nikon D80 and Tokina 12-24mm f\/4.\n\nObviously it''s Aruba
476
+ from a different point of view."}, "can_comment":1, "date_create":"1327442512",
477
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
478
+ "stat":"ok"}'
479
+ http_version:
480
+ recorded_at: Sun, 13 Apr 2014 20:36:23 GMT
481
+ - request:
482
+ method: post
483
+ uri: https://api.flickr.com/services/rest/
484
+ body:
485
+ encoding: US-ASCII
486
+ string: photoset_id=72157628378160739&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
487
+ headers:
488
+ Accept-Encoding:
489
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
490
+ Accept:
491
+ - '*/*'
492
+ User-Agent:
493
+ - FlickRaw/0.9.8
494
+ Authorization:
495
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
496
+ oauth_nonce="cJFirb1aJ8NXwKRTFQ4%2Bcdnlc0ZDQDDcQsLtCy4oRig%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
497
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421383", oauth_token="<KUVA_ACCESS_TOKEN>",
498
+ oauth_version="1.0"
499
+ Content-Type:
500
+ - application/x-www-form-urlencoded
501
+ response:
502
+ status:
503
+ code: 200
504
+ message: OK
505
+ headers:
506
+ Date:
507
+ - Sun, 13 Apr 2014 20:36:23 GMT
508
+ P3p:
509
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
510
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
511
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
512
+ Cache-Control:
513
+ - private
514
+ X-Served-By:
515
+ - www293.flickr.bf1.yahoo.com
516
+ Vary:
517
+ - Accept-Encoding
518
+ Content-Length:
519
+ - '344'
520
+ Content-Type:
521
+ - application/json
522
+ Age:
523
+ - '0'
524
+ Via:
525
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
526
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
527
+ Server:
528
+ - ATS
529
+ Connection:
530
+ - keep-alive
531
+ body:
532
+ encoding: UTF-8
533
+ string: '{"photoset":{"id":"72157628378160739", "owner":"8558751@N06", "username":"ktnl",
534
+ "primary":"6495153913", "secret":"1ba1b324ef", "server":"7145", "farm":8,
535
+ "photos":51, "count_views":"89", "count_comments":"0", "count_photos":"51",
536
+ "count_videos":0, "title":{"_content":"Carnaval di Aruba ''11"}, "description":{"_content":"These
537
+ shots were taken in and around Oranjestad, Aruba during the Carnival in March
538
+ 2011."}, "can_comment":1, "date_create":"1323640679", "date_update":"1356165010",
539
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
540
+ http_version:
541
+ recorded_at: Sun, 13 Apr 2014 20:36:24 GMT
542
+ - request:
543
+ method: post
544
+ uri: https://api.flickr.com/services/rest/
545
+ body:
546
+ encoding: US-ASCII
547
+ string: photoset_id=72157625433863013&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
548
+ headers:
549
+ Accept-Encoding:
550
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
551
+ Accept:
552
+ - '*/*'
553
+ User-Agent:
554
+ - FlickRaw/0.9.8
555
+ Authorization:
556
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
557
+ oauth_nonce="HpdabcvKifNZ4ntB357xG0QTU4ANuNZMb4%2BY5iV4DHY%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
558
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421384", oauth_token="<KUVA_ACCESS_TOKEN>",
559
+ oauth_version="1.0"
560
+ Content-Type:
561
+ - application/x-www-form-urlencoded
562
+ response:
563
+ status:
564
+ code: 200
565
+ message: OK
566
+ headers:
567
+ Date:
568
+ - Sun, 13 Apr 2014 20:36:24 GMT
569
+ P3p:
570
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
571
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
572
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
573
+ Cache-Control:
574
+ - private
575
+ X-Served-By:
576
+ - www44.flickr.bf1.yahoo.com
577
+ Vary:
578
+ - Accept-Encoding
579
+ Content-Length:
580
+ - '356'
581
+ Content-Type:
582
+ - application/json
583
+ Age:
584
+ - '0'
585
+ Via:
586
+ - http/1.1 fts122.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
587
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
588
+ Server:
589
+ - ATS
590
+ Connection:
591
+ - keep-alive
592
+ body:
593
+ encoding: UTF-8
594
+ string: '{"photoset":{"id":"72157625433863013", "owner":"8558751@N06", "username":"ktnl",
595
+ "primary":"5245419190", "secret":"54cdd111fd", "server":"5282", "farm":6,
596
+ "photos":10, "count_views":"123", "count_comments":"0", "count_photos":"10",
597
+ "count_videos":0, "title":{"_content":"Zoom Experience ''10"}, "description":{"_content":"These
598
+ shots were taken at the Zoom Experience 2010 in the Jaarbeurs, Utrecht. They
599
+ all feature the model Suraya."}, "can_comment":1, "date_create":"1291854812",
600
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
601
+ "stat":"ok"}'
602
+ http_version:
603
+ recorded_at: Sun, 13 Apr 2014 20:36:24 GMT
604
+ - request:
605
+ method: post
606
+ uri: https://api.flickr.com/services/rest/
607
+ body:
608
+ encoding: US-ASCII
609
+ string: photoset_id=72157625523500610&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
610
+ headers:
611
+ Accept-Encoding:
612
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
613
+ Accept:
614
+ - '*/*'
615
+ User-Agent:
616
+ - FlickRaw/0.9.8
617
+ Authorization:
618
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
619
+ oauth_nonce="EW2cegSbeCm3E50O22C6ZHpLVOtj09SfBbDz1gjIBcQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
620
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421384", oauth_token="<KUVA_ACCESS_TOKEN>",
621
+ oauth_version="1.0"
622
+ Content-Type:
623
+ - application/x-www-form-urlencoded
624
+ response:
625
+ status:
626
+ code: 200
627
+ message: OK
628
+ headers:
629
+ Date:
630
+ - Sun, 13 Apr 2014 20:36:24 GMT
631
+ P3p:
632
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
633
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
634
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
635
+ Cache-Control:
636
+ - private
637
+ X-Served-By:
638
+ - www61.flickr.bf1.yahoo.com
639
+ Vary:
640
+ - Accept-Encoding
641
+ Content-Length:
642
+ - '382'
643
+ Content-Type:
644
+ - application/json
645
+ Age:
646
+ - '0'
647
+ Via:
648
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
649
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
650
+ Server:
651
+ - ATS
652
+ Connection:
653
+ - keep-alive
654
+ body:
655
+ encoding: UTF-8
656
+ string: '{"photoset":{"id":"72157625523500610", "owner":"8558751@N06", "username":"ktnl",
657
+ "primary":"5230378378", "secret":"fecddda258", "server":"5242", "farm":6,
658
+ "photos":30, "count_views":"47", "count_comments":"0", "count_photos":"30",
659
+ "count_videos":0, "title":{"_content":"The Hague"}, "description":{"_content":"These
660
+ shots were taken on a sunny afternoon in the centre of The Hague, The Netherlands.
661
+ Most of them have been taken in or around the Binnenhof, where the Dutch parliament
662
+ resides."}, "can_comment":1, "date_create":"1291422677", "date_update":"1356165010",
663
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
664
+ http_version:
665
+ recorded_at: Sun, 13 Apr 2014 20:36:24 GMT
666
+ - request:
667
+ method: post
668
+ uri: https://api.flickr.com/services/rest/
669
+ body:
670
+ encoding: US-ASCII
671
+ string: photoset_id=72157624624572356&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
672
+ headers:
673
+ Accept-Encoding:
674
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
675
+ Accept:
676
+ - '*/*'
677
+ User-Agent:
678
+ - FlickRaw/0.9.8
679
+ Authorization:
680
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
681
+ oauth_nonce="r6j9ZLpz5FSjzIpUnzgtackmEpiQHPANGc3tEPpwuJg%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
682
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421384", oauth_token="<KUVA_ACCESS_TOKEN>",
683
+ oauth_version="1.0"
684
+ Content-Type:
685
+ - application/x-www-form-urlencoded
686
+ response:
687
+ status:
688
+ code: 200
689
+ message: OK
690
+ headers:
691
+ Date:
692
+ - Sun, 13 Apr 2014 20:36:25 GMT
693
+ P3p:
694
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
695
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
696
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
697
+ Cache-Control:
698
+ - private
699
+ X-Served-By:
700
+ - www153.flickr.bf1.yahoo.com
701
+ Vary:
702
+ - Accept-Encoding
703
+ Content-Length:
704
+ - '392'
705
+ Content-Type:
706
+ - application/json
707
+ Age:
708
+ - '0'
709
+ Via:
710
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
711
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
712
+ Server:
713
+ - ATS
714
+ Connection:
715
+ - keep-alive
716
+ body:
717
+ encoding: UTF-8
718
+ string: '{"photoset":{"id":"72157624624572356", "owner":"8558751@N06", "username":"ktnl",
719
+ "primary":"4847033367", "secret":"f455849b72", "server":"4146", "farm":5,
720
+ "photos":57, "count_views":"266", "count_comments":"0", "count_photos":"57",
721
+ "count_videos":0, "title":{"_content":"Zomer Carnaval ''10"}, "description":{"_content":"These
722
+ shots were taken at the Ortel Zomer Carnaval 2010 in Rotterdam. Most of them
723
+ were taken with my Nikon 50 mm f\/1.8D at Leuvehaven and some of them were
724
+ taken with my Nikon 70-300mm f4.5-5.6."}, "can_comment":1, "date_create":"1280613448",
725
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
726
+ "stat":"ok"}'
727
+ http_version:
728
+ recorded_at: Sun, 13 Apr 2014 20:36:26 GMT
729
+ - request:
730
+ method: post
731
+ uri: https://api.flickr.com/services/rest/
732
+ body:
733
+ encoding: US-ASCII
734
+ string: photoset_id=72157623902001333&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
735
+ headers:
736
+ Accept-Encoding:
737
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
738
+ Accept:
739
+ - '*/*'
740
+ User-Agent:
741
+ - FlickRaw/0.9.8
742
+ Authorization:
743
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
744
+ oauth_nonce="qzCbNaygUW5Ui2F72iX8voGvui9mMdQhBzy%2BtvfQ7eU%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
745
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421386", oauth_token="<KUVA_ACCESS_TOKEN>",
746
+ oauth_version="1.0"
747
+ Content-Type:
748
+ - application/x-www-form-urlencoded
749
+ response:
750
+ status:
751
+ code: 200
752
+ message: OK
753
+ headers:
754
+ Date:
755
+ - Sun, 13 Apr 2014 20:36:26 GMT
756
+ P3p:
757
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
758
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
759
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
760
+ Cache-Control:
761
+ - private
762
+ X-Served-By:
763
+ - www222.flickr.bf1.yahoo.com
764
+ Vary:
765
+ - Accept-Encoding
766
+ Content-Length:
767
+ - '401'
768
+ Content-Type:
769
+ - application/json
770
+ Age:
771
+ - '0'
772
+ Via:
773
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
774
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
775
+ Server:
776
+ - ATS
777
+ Connection:
778
+ - keep-alive
779
+ body:
780
+ encoding: UTF-8
781
+ string: '{"photoset":{"id":"72157623902001333", "owner":"8558751@N06", "username":"ktnl",
782
+ "primary":"4593271974", "secret":"d2482de61a", "server":"3544", "farm":4,
783
+ "photos":47, "count_views":"71", "count_comments":"0", "count_photos":"47",
784
+ "count_videos":0, "title":{"_content":"5 Mei Festival"}, "description":{"_content":"A
785
+ festival in The Hague on May 5th, which is Liberation Day in The Netherlands.
786
+ \n\nIn this set you''ll be able to view the following artists: Winne, Jurk
787
+ and Mischu Laikah."}, "can_comment":1, "date_create":"1273437402", "date_update":"1356165010",
788
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
789
+ http_version:
790
+ recorded_at: Sun, 13 Apr 2014 20:36:26 GMT
791
+ - request:
792
+ method: post
793
+ uri: https://api.flickr.com/services/rest/
794
+ body:
795
+ encoding: US-ASCII
796
+ string: photoset_id=72157623700320221&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
797
+ headers:
798
+ Accept-Encoding:
799
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
800
+ Accept:
801
+ - '*/*'
802
+ User-Agent:
803
+ - FlickRaw/0.9.8
804
+ Authorization:
805
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
806
+ oauth_nonce="nULkKOtggQaSiG30tsuWvCikt1CzY%2B2GmXjCCpK1mJA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
807
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421386", oauth_token="<KUVA_ACCESS_TOKEN>",
808
+ oauth_version="1.0"
809
+ Content-Type:
810
+ - application/x-www-form-urlencoded
811
+ response:
812
+ status:
813
+ code: 200
814
+ message: OK
815
+ headers:
816
+ Date:
817
+ - Sun, 13 Apr 2014 20:36:26 GMT
818
+ P3p:
819
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
820
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
821
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
822
+ Cache-Control:
823
+ - private
824
+ X-Served-By:
825
+ - www17.flickr.bf1.yahoo.com
826
+ Vary:
827
+ - Accept-Encoding
828
+ Content-Length:
829
+ - '322'
830
+ Content-Type:
831
+ - application/json
832
+ Age:
833
+ - '0'
834
+ Via:
835
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
836
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
837
+ Server:
838
+ - ATS
839
+ Connection:
840
+ - keep-alive
841
+ body:
842
+ encoding: UTF-8
843
+ string: '{"photoset":{"id":"72157623700320221", "owner":"8558751@N06", "username":"ktnl",
844
+ "primary":"4507629959", "secret":"42bce98099", "server":"2726", "farm":3,
845
+ "photos":23, "count_views":"89", "count_comments":"0", "count_photos":"23",
846
+ "count_videos":0, "title":{"_content":"Val Thorens"}, "description":{"_content":"Most
847
+ of these shots were taken in Val Thorens, France with a Nikon D80."}, "can_comment":1,
848
+ "date_create":"1270915823", "date_update":"1356165010", "coverphoto_server":"0",
849
+ "coverphoto_farm":0}, "stat":"ok"}'
850
+ http_version:
851
+ recorded_at: Sun, 13 Apr 2014 20:36:26 GMT
852
+ - request:
853
+ method: post
854
+ uri: https://api.flickr.com/services/rest/
855
+ body:
856
+ encoding: US-ASCII
857
+ string: photoset_id=72157622678558767&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
858
+ headers:
859
+ Accept-Encoding:
860
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
861
+ Accept:
862
+ - '*/*'
863
+ User-Agent:
864
+ - FlickRaw/0.9.8
865
+ Authorization:
866
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
867
+ oauth_nonce="jjsIHH84zNAXw%2FhlsSf%2F%2BHFh%2FQw%2FuvnSNZD1TvR9xng%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
868
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421386", oauth_token="<KUVA_ACCESS_TOKEN>",
869
+ oauth_version="1.0"
870
+ Content-Type:
871
+ - application/x-www-form-urlencoded
872
+ response:
873
+ status:
874
+ code: 200
875
+ message: OK
876
+ headers:
877
+ Date:
878
+ - Sun, 13 Apr 2014 20:36:27 GMT
879
+ P3p:
880
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
881
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
882
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
883
+ Cache-Control:
884
+ - private
885
+ X-Served-By:
886
+ - www309.flickr.bf1.yahoo.com
887
+ Vary:
888
+ - Accept-Encoding
889
+ Content-Length:
890
+ - '353'
891
+ Content-Type:
892
+ - application/json
893
+ Age:
894
+ - '1'
895
+ Via:
896
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
897
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
898
+ Server:
899
+ - ATS
900
+ Connection:
901
+ - keep-alive
902
+ body:
903
+ encoding: UTF-8
904
+ string: '{"photoset":{"id":"72157622678558767", "owner":"8558751@N06", "username":"ktnl",
905
+ "primary":"4103218587", "secret":"4c8bdd07b5", "server":"2631", "farm":3,
906
+ "photos":40, "count_views":"153", "count_comments":"0", "count_photos":"40",
907
+ "count_videos":0, "title":{"_content":"Zoom Experience ''09"}, "description":{"_content":"Zoom
908
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
909
+ in Utrecht by the Zoom.nl magazine."}, "can_comment":1, "date_create":"1258229906",
910
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
911
+ "stat":"ok"}'
912
+ http_version:
913
+ recorded_at: Sun, 13 Apr 2014 20:36:28 GMT
914
+ - request:
915
+ method: post
916
+ uri: https://api.flickr.com/services/rest/
917
+ body:
918
+ encoding: US-ASCII
919
+ string: photoset_id=72157622216400117&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
920
+ headers:
921
+ Accept-Encoding:
922
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
923
+ Accept:
924
+ - '*/*'
925
+ User-Agent:
926
+ - FlickRaw/0.9.8
927
+ Authorization:
928
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
929
+ oauth_nonce="D4baLNtRNdAMYRb3Y9Y4BT%2FSYusUrZ5hygGpgOFx634%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
930
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421388", oauth_token="<KUVA_ACCESS_TOKEN>",
931
+ oauth_version="1.0"
932
+ Content-Type:
933
+ - application/x-www-form-urlencoded
934
+ response:
935
+ status:
936
+ code: 200
937
+ message: OK
938
+ headers:
939
+ Date:
940
+ - Sun, 13 Apr 2014 20:36:28 GMT
941
+ P3p:
942
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
943
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
944
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
945
+ Cache-Control:
946
+ - private
947
+ X-Served-By:
948
+ - www52.flickr.bf1.yahoo.com
949
+ Vary:
950
+ - Accept-Encoding
951
+ Content-Length:
952
+ - '354'
953
+ Content-Type:
954
+ - application/json
955
+ Age:
956
+ - '0'
957
+ Via:
958
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
959
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
960
+ Server:
961
+ - ATS
962
+ Connection:
963
+ - keep-alive
964
+ body:
965
+ encoding: UTF-8
966
+ string: '{"photoset":{"id":"72157622216400117", "owner":"8558751@N06", "username":"ktnl",
967
+ "primary":"3910073517", "secret":"2ee8ba3d74", "server":"2631", "farm":3,
968
+ "photos":152, "count_views":"108", "count_comments":"0", "count_photos":"152",
969
+ "count_videos":0, "title":{"_content":"Rome"}, "description":{"_content":"Most
970
+ of these shots were taken in Rome, Italy with my Nikkor 50 mm f\/1.8. The
971
+ others were taken with the Nikkor 55-200 mm f\/4.0-5.6."}, "can_comment":1,
972
+ "date_create":"1252704238", "date_update":"1356165011", "coverphoto_server":"0",
973
+ "coverphoto_farm":0}, "stat":"ok"}'
974
+ http_version:
975
+ recorded_at: Sun, 13 Apr 2014 20:36:28 GMT
976
+ - request:
977
+ method: post
978
+ uri: https://api.flickr.com/services/rest/
979
+ body:
980
+ encoding: US-ASCII
981
+ string: photoset_id=72157622251601466&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
982
+ headers:
983
+ Accept-Encoding:
984
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
985
+ Accept:
986
+ - '*/*'
987
+ User-Agent:
988
+ - FlickRaw/0.9.8
989
+ Authorization:
990
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
991
+ oauth_nonce="QgBaBPEc6BSLfVUZP5BVapQg219fq5wpHe2v5HjkZac%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
992
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421388", oauth_token="<KUVA_ACCESS_TOKEN>",
993
+ oauth_version="1.0"
994
+ Content-Type:
995
+ - application/x-www-form-urlencoded
996
+ response:
997
+ status:
998
+ code: 200
999
+ message: OK
1000
+ headers:
1001
+ Date:
1002
+ - Sun, 13 Apr 2014 20:36:28 GMT
1003
+ P3p:
1004
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1005
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1006
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1007
+ Cache-Control:
1008
+ - private
1009
+ X-Served-By:
1010
+ - www303.flickr.bf1.yahoo.com
1011
+ Vary:
1012
+ - Accept-Encoding
1013
+ Content-Length:
1014
+ - '366'
1015
+ Content-Type:
1016
+ - application/json
1017
+ Age:
1018
+ - '0'
1019
+ Via:
1020
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1021
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1022
+ Server:
1023
+ - ATS
1024
+ Connection:
1025
+ - keep-alive
1026
+ body:
1027
+ encoding: UTF-8
1028
+ string: '{"photoset":{"id":"72157622251601466", "owner":"8558751@N06", "username":"ktnl",
1029
+ "primary":"3889860224", "secret":"9333bbc160", "server":"2435", "farm":3,
1030
+ "photos":81, "count_views":"234", "count_comments":"0", "count_photos":"81",
1031
+ "count_videos":0, "title":{"_content":"Rome (UWA)"}, "description":{"_content":"These
1032
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
1033
+ Angle lens, in Rome, Italy."}, "can_comment":1, "date_create":"1252152755",
1034
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1035
+ "stat":"ok"}'
1036
+ http_version:
1037
+ recorded_at: Sun, 13 Apr 2014 20:36:28 GMT
1038
+ - request:
1039
+ method: post
1040
+ uri: https://api.flickr.com/services/rest/
1041
+ body:
1042
+ encoding: US-ASCII
1043
+ string: photoset_id=72157622042947321&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1044
+ headers:
1045
+ Accept-Encoding:
1046
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1047
+ Accept:
1048
+ - '*/*'
1049
+ User-Agent:
1050
+ - FlickRaw/0.9.8
1051
+ Authorization:
1052
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1053
+ oauth_nonce="d3CONVJCOTxSDg%2FTbvIoCZg%2Bk1yI8vyNybv2veT9FHk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1054
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421388", oauth_token="<KUVA_ACCESS_TOKEN>",
1055
+ oauth_version="1.0"
1056
+ Content-Type:
1057
+ - application/x-www-form-urlencoded
1058
+ response:
1059
+ status:
1060
+ code: 200
1061
+ message: OK
1062
+ headers:
1063
+ Date:
1064
+ - Sun, 13 Apr 2014 20:36:28 GMT
1065
+ P3p:
1066
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1067
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1068
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1069
+ Cache-Control:
1070
+ - private
1071
+ X-Served-By:
1072
+ - www259.flickr.bf1.yahoo.com
1073
+ Vary:
1074
+ - Accept-Encoding
1075
+ Content-Length:
1076
+ - '323'
1077
+ Content-Type:
1078
+ - application/json
1079
+ Age:
1080
+ - '3'
1081
+ Via:
1082
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1083
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1084
+ Server:
1085
+ - ATS
1086
+ Connection:
1087
+ - keep-alive
1088
+ body:
1089
+ encoding: UTF-8
1090
+ string: '{"photoset":{"id":"72157622042947321", "owner":"8558751@N06", "username":"ktnl",
1091
+ "primary":"3865054146", "secret":"e5d907bd9a", "server":"2637", "farm":3,
1092
+ "photos":27, "count_views":"93", "count_comments":"0", "count_photos":"27",
1093
+ "count_videos":0, "title":{"_content":"Madurodam At Night"}, "description":{"_content":"These
1094
+ shots were taken during the evening at Madurodam, Scheveningen. "}, "can_comment":1,
1095
+ "date_create":"1251468756", "date_update":"1356165010", "coverphoto_server":"0",
1096
+ "coverphoto_farm":0}, "stat":"ok"}'
1097
+ http_version:
1098
+ recorded_at: Sun, 13 Apr 2014 20:36:29 GMT
1099
+ - request:
1100
+ method: post
1101
+ uri: https://api.flickr.com/services/rest/
1102
+ body:
1103
+ encoding: US-ASCII
1104
+ string: photoset_id=72157622067739660&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1105
+ headers:
1106
+ Accept-Encoding:
1107
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1108
+ Accept:
1109
+ - '*/*'
1110
+ User-Agent:
1111
+ - FlickRaw/0.9.8
1112
+ Authorization:
1113
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1114
+ oauth_nonce="%2FLByKlhk0ubWaJAZC4KiHN1vwa1DlyNTJ3IfV6RKn%2BQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1115
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421389", oauth_token="<KUVA_ACCESS_TOKEN>",
1116
+ oauth_version="1.0"
1117
+ Content-Type:
1118
+ - application/x-www-form-urlencoded
1119
+ response:
1120
+ status:
1121
+ code: 200
1122
+ message: OK
1123
+ headers:
1124
+ Date:
1125
+ - Sun, 13 Apr 2014 20:36:29 GMT
1126
+ P3p:
1127
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1128
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1129
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1130
+ Cache-Control:
1131
+ - private
1132
+ X-Served-By:
1133
+ - www274.flickr.bf1.yahoo.com
1134
+ Vary:
1135
+ - Accept-Encoding
1136
+ Content-Length:
1137
+ - '397'
1138
+ Content-Type:
1139
+ - application/json
1140
+ Age:
1141
+ - '0'
1142
+ Via:
1143
+ - http/1.1 fts110.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1144
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1145
+ Server:
1146
+ - ATS
1147
+ Connection:
1148
+ - keep-alive
1149
+ body:
1150
+ encoding: UTF-8
1151
+ string: '{"photoset":{"id":"72157622067739660", "owner":"8558751@N06", "username":"ktnl",
1152
+ "primary":"3843992302", "secret":"e0fc5eb971", "server":"2608", "farm":3,
1153
+ "photos":76, "count_views":"137", "count_comments":"0", "count_photos":"76",
1154
+ "count_videos":0, "title":{"_content":"Streetmasters ''09"}, "description":{"_content":"Streetmasters
1155
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
1156
+ breakdancers, streetdancers and streetsoccer players. As of the 2009 edition
1157
+ there also is a freerunners dicipline."}, "can_comment":1, "date_create":"1250543322",
1158
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1159
+ "stat":"ok"}'
1160
+ http_version:
1161
+ recorded_at: Sun, 13 Apr 2014 20:36:29 GMT
1162
+ - request:
1163
+ method: post
1164
+ uri: https://api.flickr.com/services/rest/
1165
+ body:
1166
+ encoding: US-ASCII
1167
+ string: photoset_id=72157621986269708&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1168
+ headers:
1169
+ Accept-Encoding:
1170
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1171
+ Accept:
1172
+ - '*/*'
1173
+ User-Agent:
1174
+ - FlickRaw/0.9.8
1175
+ Authorization:
1176
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1177
+ oauth_nonce="nn3K7%2BwdeBsmCBeyBKO3TAhfEpqUPCSLs3k7EBZP32w%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1178
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421389", oauth_token="<KUVA_ACCESS_TOKEN>",
1179
+ oauth_version="1.0"
1180
+ Content-Type:
1181
+ - application/x-www-form-urlencoded
1182
+ response:
1183
+ status:
1184
+ code: 200
1185
+ message: OK
1186
+ headers:
1187
+ Date:
1188
+ - Sun, 13 Apr 2014 20:36:29 GMT
1189
+ P3p:
1190
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1191
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1192
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1193
+ Cache-Control:
1194
+ - private
1195
+ X-Served-By:
1196
+ - www64.flickr.bf1.yahoo.com
1197
+ Vary:
1198
+ - Accept-Encoding
1199
+ Content-Length:
1200
+ - '361'
1201
+ Content-Type:
1202
+ - application/json
1203
+ Age:
1204
+ - '0'
1205
+ Via:
1206
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1207
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1208
+ Server:
1209
+ - ATS
1210
+ Connection:
1211
+ - keep-alive
1212
+ body:
1213
+ encoding: UTF-8
1214
+ string: '{"photoset":{"id":"72157621986269708", "owner":"8558751@N06", "username":"ktnl",
1215
+ "primary":"3802687475", "secret":"7007c87d22", "server":"3493", "farm":4,
1216
+ "photos":21, "count_views":"97", "count_comments":"0", "count_photos":"21",
1217
+ "count_videos":0, "title":{"_content":"Fit For Free Dance Parade"}, "description":{"_content":"The
1218
+ Fit For Free Dance Parade is a parade of trucks with DJ''s and dancers on
1219
+ them, which goes straight through Rotterdam."}, "can_comment":1, "date_create":"1249803502",
1220
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1221
+ "stat":"ok"}'
1222
+ http_version:
1223
+ recorded_at: Sun, 13 Apr 2014 20:36:29 GMT
1224
+ - request:
1225
+ method: post
1226
+ uri: https://api.flickr.com/services/rest/
1227
+ body:
1228
+ encoding: US-ASCII
1229
+ string: photoset_id=72157621709918913&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1230
+ headers:
1231
+ Accept-Encoding:
1232
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1233
+ Accept:
1234
+ - '*/*'
1235
+ User-Agent:
1236
+ - FlickRaw/0.9.8
1237
+ Authorization:
1238
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1239
+ oauth_nonce="KqAbeJKFe2J4xjtgNFU9ud5y1f20CRx0C1oSsKNhGWg%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1240
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421389", oauth_token="<KUVA_ACCESS_TOKEN>",
1241
+ oauth_version="1.0"
1242
+ Content-Type:
1243
+ - application/x-www-form-urlencoded
1244
+ response:
1245
+ status:
1246
+ code: 200
1247
+ message: OK
1248
+ headers:
1249
+ Date:
1250
+ - Sun, 13 Apr 2014 20:36:30 GMT
1251
+ P3p:
1252
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1253
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1254
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1255
+ Cache-Control:
1256
+ - private
1257
+ X-Served-By:
1258
+ - www175.flickr.bf1.yahoo.com
1259
+ Vary:
1260
+ - Accept-Encoding
1261
+ Content-Length:
1262
+ - '366'
1263
+ Content-Type:
1264
+ - application/json
1265
+ Age:
1266
+ - '0'
1267
+ Via:
1268
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1269
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1270
+ Server:
1271
+ - ATS
1272
+ Connection:
1273
+ - keep-alive
1274
+ body:
1275
+ encoding: UTF-8
1276
+ string: '{"photoset":{"id":"72157621709918913", "owner":"8558751@N06", "username":"ktnl",
1277
+ "primary":"3757528316", "secret":"a20bd0c139", "server":"2610", "farm":3,
1278
+ "photos":58, "count_views":"290", "count_comments":"0", "count_photos":"58",
1279
+ "count_videos":0, "title":{"_content":"Zomer Carnaval ''09"}, "description":{"_content":"These
1280
+ shots were taken at the Ortel Zomer Carnaval 2009 in Rotterdam. They were
1281
+ al taken with my Nikon 50 mm f\/1.8D at the Coolsingel."}, "can_comment":1,
1282
+ "date_create":"1248592969", "date_update":"1356165010", "coverphoto_server":"0",
1283
+ "coverphoto_farm":0}, "stat":"ok"}'
1284
+ http_version:
1285
+ recorded_at: Sun, 13 Apr 2014 20:36:30 GMT
1286
+ - request:
1287
+ method: post
1288
+ uri: https://api.flickr.com/services/rest/
1289
+ body:
1290
+ encoding: US-ASCII
1291
+ string: photoset_id=72157621226409953&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1292
+ headers:
1293
+ Accept-Encoding:
1294
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1295
+ Accept:
1296
+ - '*/*'
1297
+ User-Agent:
1298
+ - FlickRaw/0.9.8
1299
+ Authorization:
1300
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1301
+ oauth_nonce="pVodOYfcsM4AdaD%2Brq8gOpMccv1PaiWUV%2B%2FLy4QnmNg%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1302
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421390", oauth_token="<KUVA_ACCESS_TOKEN>",
1303
+ oauth_version="1.0"
1304
+ Content-Type:
1305
+ - application/x-www-form-urlencoded
1306
+ response:
1307
+ status:
1308
+ code: 200
1309
+ message: OK
1310
+ headers:
1311
+ Date:
1312
+ - Sun, 13 Apr 2014 20:36:30 GMT
1313
+ P3p:
1314
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1315
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1316
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1317
+ Cache-Control:
1318
+ - private
1319
+ X-Served-By:
1320
+ - www69.flickr.bf1.yahoo.com
1321
+ Vary:
1322
+ - Accept-Encoding
1323
+ Content-Length:
1324
+ - '326'
1325
+ Content-Type:
1326
+ - application/json
1327
+ Age:
1328
+ - '0'
1329
+ Via:
1330
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1331
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1332
+ Server:
1333
+ - ATS
1334
+ Connection:
1335
+ - keep-alive
1336
+ body:
1337
+ encoding: UTF-8
1338
+ string: '{"photoset":{"id":"72157621226409953", "owner":"8558751@N06", "username":"ktnl",
1339
+ "primary":"3713875609", "secret":"4b441bf691", "server":"3474", "farm":4,
1340
+ "photos":15, "count_views":"124", "count_comments":"0", "count_photos":"15",
1341
+ "count_videos":0, "title":{"_content":"North Sea Round Town"}, "description":{"_content":"North
1342
+ Sea Round Town is the warming-up of the North Sea Jazz Festival in Rotterdam."},
1343
+ "can_comment":1, "date_create":"1247436891", "date_update":"1356165010", "coverphoto_server":"0",
1344
+ "coverphoto_farm":0}, "stat":"ok"}'
1345
+ http_version:
1346
+ recorded_at: Sun, 13 Apr 2014 20:36:30 GMT
1347
+ - request:
1348
+ method: post
1349
+ uri: https://api.flickr.com/services/rest/
1350
+ body:
1351
+ encoding: US-ASCII
1352
+ string: photoset_id=72157620266565933&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1353
+ headers:
1354
+ Accept-Encoding:
1355
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1356
+ Accept:
1357
+ - '*/*'
1358
+ User-Agent:
1359
+ - FlickRaw/0.9.8
1360
+ Authorization:
1361
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1362
+ oauth_nonce="tEDL3OOlCORMWHaP6FuyVmSLBp1dHTYMeMsypFxPYQs%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1363
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421390", oauth_token="<KUVA_ACCESS_TOKEN>",
1364
+ oauth_version="1.0"
1365
+ Content-Type:
1366
+ - application/x-www-form-urlencoded
1367
+ response:
1368
+ status:
1369
+ code: 200
1370
+ message: OK
1371
+ headers:
1372
+ Date:
1373
+ - Sun, 13 Apr 2014 20:36:30 GMT
1374
+ P3p:
1375
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1376
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1377
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1378
+ Cache-Control:
1379
+ - private
1380
+ X-Served-By:
1381
+ - www40.flickr.bf1.yahoo.com
1382
+ Vary:
1383
+ - Accept-Encoding
1384
+ Content-Length:
1385
+ - '368'
1386
+ Content-Type:
1387
+ - application/json
1388
+ Age:
1389
+ - '3'
1390
+ Via:
1391
+ - http/1.1 fts122.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1392
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1393
+ Server:
1394
+ - ATS
1395
+ Connection:
1396
+ - keep-alive
1397
+ body:
1398
+ encoding: UTF-8
1399
+ string: '{"photoset":{"id":"72157620266565933", "owner":"8558751@N06", "username":"ktnl",
1400
+ "primary":"3654106253", "secret":"3b5eca01e6", "server":"3394", "farm":4,
1401
+ "photos":186, "count_views":"491", "count_comments":"0", "count_photos":"186",
1402
+ "count_videos":0, "title":{"_content":"New York City"}, "description":{"_content":"These
1403
+ shots were taken with my Nikon D80 and the Nikkor 50mm f\/1.8D in New York
1404
+ City, USA. Some of the shots were taken with the Nikkor 55-200mm f\/4-5.6."},
1405
+ "can_comment":1, "date_create":"1245782076", "date_update":"1356165013", "coverphoto_server":"0",
1406
+ "coverphoto_farm":0}, "stat":"ok"}'
1407
+ http_version:
1408
+ recorded_at: Sun, 13 Apr 2014 20:36:31 GMT
1409
+ - request:
1410
+ method: post
1411
+ uri: https://api.flickr.com/services/rest/
1412
+ body:
1413
+ encoding: US-ASCII
1414
+ string: photoset_id=72157619874753455&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1415
+ headers:
1416
+ Accept-Encoding:
1417
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1418
+ Accept:
1419
+ - '*/*'
1420
+ User-Agent:
1421
+ - FlickRaw/0.9.8
1422
+ Authorization:
1423
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1424
+ oauth_nonce="MSoo5q9yqFCQTcRdWG%2FOeFxT%2FW39ID0AnPgvqnLem3M%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1425
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421391", oauth_token="<KUVA_ACCESS_TOKEN>",
1426
+ oauth_version="1.0"
1427
+ Content-Type:
1428
+ - application/x-www-form-urlencoded
1429
+ response:
1430
+ status:
1431
+ code: 200
1432
+ message: OK
1433
+ headers:
1434
+ Date:
1435
+ - Sun, 13 Apr 2014 20:36:31 GMT
1436
+ P3p:
1437
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1438
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1439
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1440
+ Cache-Control:
1441
+ - private
1442
+ X-Served-By:
1443
+ - www192.flickr.bf1.yahoo.com
1444
+ Vary:
1445
+ - Accept-Encoding
1446
+ Content-Length:
1447
+ - '372'
1448
+ Content-Type:
1449
+ - application/json
1450
+ Age:
1451
+ - '0'
1452
+ Via:
1453
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1454
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1455
+ Server:
1456
+ - ATS
1457
+ Connection:
1458
+ - keep-alive
1459
+ body:
1460
+ encoding: UTF-8
1461
+ string: '{"photoset":{"id":"72157619874753455", "owner":"8558751@N06", "username":"ktnl",
1462
+ "primary":"3643159571", "secret":"f7623d5eaf", "server":"3570", "farm":4,
1463
+ "photos":133, "count_views":"401", "count_comments":"0", "count_photos":"133",
1464
+ "count_videos":0, "title":{"_content":"New York City (UWA)"}, "description":{"_content":"These
1465
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
1466
+ Angle lens, in New York City, USA."}, "can_comment":1, "date_create":"1245423559",
1467
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1468
+ "stat":"ok"}'
1469
+ http_version:
1470
+ recorded_at: Sun, 13 Apr 2014 20:36:32 GMT
1471
+ - request:
1472
+ method: post
1473
+ uri: https://api.flickr.com/services/rest/
1474
+ body:
1475
+ encoding: US-ASCII
1476
+ string: photoset_id=72157618789715578&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1477
+ headers:
1478
+ Accept-Encoding:
1479
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1480
+ Accept:
1481
+ - '*/*'
1482
+ User-Agent:
1483
+ - FlickRaw/0.9.8
1484
+ Authorization:
1485
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1486
+ oauth_nonce="EOXsrjPXJOZguclXXkiqgLZoz0kLtHxEXzfGxOWgWKQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1487
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421392", oauth_token="<KUVA_ACCESS_TOKEN>",
1488
+ oauth_version="1.0"
1489
+ Content-Type:
1490
+ - application/x-www-form-urlencoded
1491
+ response:
1492
+ status:
1493
+ code: 200
1494
+ message: OK
1495
+ headers:
1496
+ Date:
1497
+ - Sun, 13 Apr 2014 20:36:32 GMT
1498
+ P3p:
1499
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1500
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1501
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1502
+ Cache-Control:
1503
+ - private
1504
+ X-Served-By:
1505
+ - www286.flickr.bf1.yahoo.com
1506
+ Vary:
1507
+ - Accept-Encoding
1508
+ Content-Length:
1509
+ - '295'
1510
+ Content-Type:
1511
+ - application/json
1512
+ Age:
1513
+ - '0'
1514
+ Via:
1515
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1516
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1517
+ Server:
1518
+ - ATS
1519
+ Connection:
1520
+ - keep-alive
1521
+ body:
1522
+ encoding: UTF-8
1523
+ string: '{"photoset":{"id":"72157618789715578", "owner":"8558751@N06", "username":"ktnl",
1524
+ "primary":"3563736117", "secret":"482e7889db", "server":"3656", "farm":4,
1525
+ "photos":13, "count_views":"47", "count_comments":"0", "count_photos":"13",
1526
+ "count_videos":0, "title":{"_content":"Antwerp"}, "description":{"_content":"Shots
1527
+ I''ve taken in Antwerp."}, "can_comment":1, "date_create":"1243286961", "date_update":"1356165009",
1528
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
1529
+ http_version:
1530
+ recorded_at: Sun, 13 Apr 2014 20:36:32 GMT
1531
+ - request:
1532
+ method: post
1533
+ uri: https://api.flickr.com/services/rest/
1534
+ body:
1535
+ encoding: US-ASCII
1536
+ string: photoset_id=72157617813232989&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1537
+ headers:
1538
+ Accept-Encoding:
1539
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1540
+ Accept:
1541
+ - '*/*'
1542
+ User-Agent:
1543
+ - FlickRaw/0.9.8
1544
+ Authorization:
1545
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1546
+ oauth_nonce="TBhSefHFR3BvZvfFxBI6Rrt1NCt3eqYX58cqAgGH3i4%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1547
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421392", oauth_token="<KUVA_ACCESS_TOKEN>",
1548
+ oauth_version="1.0"
1549
+ Content-Type:
1550
+ - application/x-www-form-urlencoded
1551
+ response:
1552
+ status:
1553
+ code: 200
1554
+ message: OK
1555
+ headers:
1556
+ Date:
1557
+ - Sun, 13 Apr 2014 20:36:32 GMT
1558
+ P3p:
1559
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1560
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1561
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1562
+ Cache-Control:
1563
+ - private
1564
+ X-Served-By:
1565
+ - www127.flickr.bf1.yahoo.com
1566
+ Vary:
1567
+ - Accept-Encoding
1568
+ Content-Length:
1569
+ - '334'
1570
+ Content-Type:
1571
+ - application/json
1572
+ Age:
1573
+ - '0'
1574
+ Via:
1575
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1576
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1577
+ Server:
1578
+ - ATS
1579
+ Connection:
1580
+ - keep-alive
1581
+ body:
1582
+ encoding: UTF-8
1583
+ string: '{"photoset":{"id":"72157617813232989", "owner":"8558751@N06", "username":"ktnl",
1584
+ "primary":"3515445170", "secret":"468e074632", "server":"3356", "farm":4,
1585
+ "photos":3, "count_views":"31", "count_comments":"0", "count_photos":"3",
1586
+ "count_videos":0, "title":{"_content":"Night At The Docks"}, "description":{"_content":"These
1587
+ shots were taken at the docks of Rotterdam. We were standing near the Maas."},
1588
+ "can_comment":1, "date_create":"1241870453", "date_update":"1356165009", "coverphoto_server":"0",
1589
+ "coverphoto_farm":0}, "stat":"ok"}'
1590
+ http_version:
1591
+ recorded_at: Sun, 13 Apr 2014 20:36:32 GMT
1592
+ - request:
1593
+ method: post
1594
+ uri: https://api.flickr.com/services/rest/
1595
+ body:
1596
+ encoding: US-ASCII
1597
+ string: photoset_id=72157611834597247&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1598
+ headers:
1599
+ Accept-Encoding:
1600
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1601
+ Accept:
1602
+ - '*/*'
1603
+ User-Agent:
1604
+ - FlickRaw/0.9.8
1605
+ Authorization:
1606
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1607
+ oauth_nonce="BITyvVsK7inCQD626%2BgGbLdYOYPTfGvKT75hDqyX5Ig%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1608
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421392", oauth_token="<KUVA_ACCESS_TOKEN>",
1609
+ oauth_version="1.0"
1610
+ Content-Type:
1611
+ - application/x-www-form-urlencoded
1612
+ response:
1613
+ status:
1614
+ code: 200
1615
+ message: OK
1616
+ headers:
1617
+ Date:
1618
+ - Sun, 13 Apr 2014 20:36:32 GMT
1619
+ P3p:
1620
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1621
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1622
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1623
+ Cache-Control:
1624
+ - private
1625
+ X-Served-By:
1626
+ - www23.flickr.bf1.yahoo.com
1627
+ Vary:
1628
+ - Accept-Encoding
1629
+ Content-Length:
1630
+ - '356'
1631
+ Content-Type:
1632
+ - application/json
1633
+ Age:
1634
+ - '3'
1635
+ Via:
1636
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1637
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1638
+ Server:
1639
+ - ATS
1640
+ Connection:
1641
+ - keep-alive
1642
+ body:
1643
+ encoding: UTF-8
1644
+ string: '{"photoset":{"id":"72157611834597247", "owner":"8558751@N06", "username":"ktnl",
1645
+ "primary":"3149804427", "secret":"0b95ff03f7", "server":"3101", "farm":4,
1646
+ "photos":20, "count_views":"103", "count_comments":"0", "count_photos":"20",
1647
+ "count_videos":0, "title":{"_content":"Red Bull Knock Out"}, "description":{"_content":"The
1648
+ Red Bull Knockout took place in Scheveningen, the Netherlands on November
1649
+ 16th. These shots were taken there."}, "can_comment":1, "date_create":"1230641381",
1650
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1651
+ "stat":"ok"}'
1652
+ http_version:
1653
+ recorded_at: Sun, 13 Apr 2014 20:36:34 GMT
1654
+ - request:
1655
+ method: post
1656
+ uri: https://api.flickr.com/services/rest/
1657
+ body:
1658
+ encoding: US-ASCII
1659
+ string: photoset_id=72157608768338052&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1660
+ headers:
1661
+ Accept-Encoding:
1662
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1663
+ Accept:
1664
+ - '*/*'
1665
+ User-Agent:
1666
+ - FlickRaw/0.9.8
1667
+ Authorization:
1668
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1669
+ oauth_nonce="NATFjQMBNHKNAmPVvynhF3Eh%2FHV1AG6JOPsdDf0%2B2YY%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1670
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421394", oauth_token="<KUVA_ACCESS_TOKEN>",
1671
+ oauth_version="1.0"
1672
+ Content-Type:
1673
+ - application/x-www-form-urlencoded
1674
+ response:
1675
+ status:
1676
+ code: 200
1677
+ message: OK
1678
+ headers:
1679
+ Date:
1680
+ - Sun, 13 Apr 2014 20:36:34 GMT
1681
+ P3p:
1682
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1683
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1684
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1685
+ Cache-Control:
1686
+ - private
1687
+ X-Served-By:
1688
+ - www269.flickr.bf1.yahoo.com
1689
+ Vary:
1690
+ - Accept-Encoding
1691
+ Content-Length:
1692
+ - '354'
1693
+ Content-Type:
1694
+ - application/json
1695
+ Age:
1696
+ - '0'
1697
+ Via:
1698
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1699
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1700
+ Server:
1701
+ - ATS
1702
+ Connection:
1703
+ - keep-alive
1704
+ body:
1705
+ encoding: UTF-8
1706
+ string: '{"photoset":{"id":"72157608768338052", "owner":"8558751@N06", "username":"ktnl",
1707
+ "primary":"3070765188", "secret":"28b8fa5d38", "server":"3201", "farm":4,
1708
+ "photos":35, "count_views":"383", "count_comments":"0", "count_photos":"35",
1709
+ "count_videos":0, "title":{"_content":"Zoom Experience ''08"}, "description":{"_content":"Zoom
1710
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
1711
+ in Utrecht by the Zoom.nl magazine."}, "can_comment":1, "date_create":"1226182293",
1712
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
1713
+ "stat":"ok"}'
1714
+ http_version:
1715
+ recorded_at: Sun, 13 Apr 2014 20:36:34 GMT
1716
+ - request:
1717
+ method: post
1718
+ uri: https://api.flickr.com/services/rest/
1719
+ body:
1720
+ encoding: US-ASCII
1721
+ string: photoset_id=72157607994521912&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1722
+ headers:
1723
+ Accept-Encoding:
1724
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1725
+ Accept:
1726
+ - '*/*'
1727
+ User-Agent:
1728
+ - FlickRaw/0.9.8
1729
+ Authorization:
1730
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1731
+ oauth_nonce="R5JVq8%2BmwVR1OEYzGYIgPCBPleUA5t9JyZxi26kOgjU%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1732
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421394", oauth_token="<KUVA_ACCESS_TOKEN>",
1733
+ oauth_version="1.0"
1734
+ Content-Type:
1735
+ - application/x-www-form-urlencoded
1736
+ response:
1737
+ status:
1738
+ code: 200
1739
+ message: OK
1740
+ headers:
1741
+ Date:
1742
+ - Sun, 13 Apr 2014 20:36:34 GMT
1743
+ P3p:
1744
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1745
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1746
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1747
+ Cache-Control:
1748
+ - private
1749
+ X-Served-By:
1750
+ - www72.flickr.bf1.yahoo.com
1751
+ Vary:
1752
+ - Accept-Encoding
1753
+ Content-Length:
1754
+ - '346'
1755
+ Content-Type:
1756
+ - application/json
1757
+ Age:
1758
+ - '0'
1759
+ Via:
1760
+ - http/1.1 fts113.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1761
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1762
+ Server:
1763
+ - ATS
1764
+ Connection:
1765
+ - keep-alive
1766
+ body:
1767
+ encoding: UTF-8
1768
+ string: '{"photoset":{"id":"72157607994521912", "owner":"8558751@N06", "username":"ktnl",
1769
+ "primary":"2938539715", "secret":"683e0092c3", "server":"3025", "farm":4,
1770
+ "photos":12, "count_views":"1169", "count_comments":"0", "count_photos":"12",
1771
+ "count_videos":0, "title":{"_content":"100% Tuning"}, "description":{"_content":"100%
1772
+ Tuning is the largest indoor tuning event in Holland. This year was the 5th
1773
+ edition of 100% Tuning in Ahoy Rotterdam."}, "can_comment":1, "date_create":"1223927875",
1774
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1775
+ "stat":"ok"}'
1776
+ http_version:
1777
+ recorded_at: Sun, 13 Apr 2014 20:36:34 GMT
1778
+ - request:
1779
+ method: post
1780
+ uri: https://api.flickr.com/services/rest/
1781
+ body:
1782
+ encoding: US-ASCII
1783
+ string: photoset_id=72157607752895562&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1784
+ headers:
1785
+ Accept-Encoding:
1786
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1787
+ Accept:
1788
+ - '*/*'
1789
+ User-Agent:
1790
+ - FlickRaw/0.9.8
1791
+ Authorization:
1792
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1793
+ oauth_nonce="nzzLi3wMFZczEmmWXc%2FNRty9tNrp8MCPyEKXJYvzUFs%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1794
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421394", oauth_token="<KUVA_ACCESS_TOKEN>",
1795
+ oauth_version="1.0"
1796
+ Content-Type:
1797
+ - application/x-www-form-urlencoded
1798
+ response:
1799
+ status:
1800
+ code: 200
1801
+ message: OK
1802
+ headers:
1803
+ Date:
1804
+ - Sun, 13 Apr 2014 20:36:34 GMT
1805
+ P3p:
1806
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1807
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1808
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1809
+ Cache-Control:
1810
+ - private
1811
+ X-Served-By:
1812
+ - www203.flickr.bf1.yahoo.com
1813
+ Vary:
1814
+ - Accept-Encoding
1815
+ Content-Length:
1816
+ - '358'
1817
+ Content-Type:
1818
+ - application/json
1819
+ Age:
1820
+ - '0'
1821
+ Via:
1822
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1823
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1824
+ Server:
1825
+ - ATS
1826
+ Connection:
1827
+ - keep-alive
1828
+ body:
1829
+ encoding: UTF-8
1830
+ string: '{"photoset":{"id":"72157607752895562", "owner":"8558751@N06", "username":"ktnl",
1831
+ "primary":"2914332291", "secret":"fd4400f0dd", "server":"3248", "farm":4,
1832
+ "photos":17, "count_views":"101", "count_comments":"0", "count_photos":"17",
1833
+ "count_videos":0, "title":{"_content":"Training Feijenoord"}, "description":{"_content":"These
1834
+ photos were taken on a saturday at De Kuip in Rotterdam. The selection of
1835
+ Feijenoord 1 was training there at the moment."}, "can_comment":1, "date_create":"1223214961",
1836
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
1837
+ "stat":"ok"}'
1838
+ http_version:
1839
+ recorded_at: Sun, 13 Apr 2014 20:36:35 GMT
1840
+ - request:
1841
+ method: post
1842
+ uri: https://api.flickr.com/services/rest/
1843
+ body:
1844
+ encoding: US-ASCII
1845
+ string: photoset_id=72157607757878689&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1846
+ headers:
1847
+ Accept-Encoding:
1848
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1849
+ Accept:
1850
+ - '*/*'
1851
+ User-Agent:
1852
+ - FlickRaw/0.9.8
1853
+ Authorization:
1854
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1855
+ oauth_nonce="bzBYUnOeqMgwkCYimpEre3evxQ4GdzG7s4%2B3KLs7KqA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1856
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421395", oauth_token="<KUVA_ACCESS_TOKEN>",
1857
+ oauth_version="1.0"
1858
+ Content-Type:
1859
+ - application/x-www-form-urlencoded
1860
+ response:
1861
+ status:
1862
+ code: 200
1863
+ message: OK
1864
+ headers:
1865
+ Date:
1866
+ - Sun, 13 Apr 2014 20:36:35 GMT
1867
+ P3p:
1868
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1869
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1870
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1871
+ Cache-Control:
1872
+ - private
1873
+ X-Served-By:
1874
+ - www311.flickr.bf1.yahoo.com
1875
+ Vary:
1876
+ - Accept-Encoding
1877
+ Content-Length:
1878
+ - '361'
1879
+ Content-Type:
1880
+ - application/json
1881
+ Age:
1882
+ - '0'
1883
+ Via:
1884
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1885
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1886
+ Server:
1887
+ - ATS
1888
+ Connection:
1889
+ - keep-alive
1890
+ body:
1891
+ encoding: UTF-8
1892
+ string: '{"photoset":{"id":"72157607757878689", "owner":"8558751@N06", "username":"ktnl",
1893
+ "primary":"2914105201", "secret":"ae046eb2ea", "server":"3090", "farm":4,
1894
+ "photos":15, "count_views":"41", "count_comments":"0", "count_photos":"15",
1895
+ "count_videos":0, "title":{"_content":"Rotterdam Road Races"}, "description":{"_content":"The
1896
+ Rotterdam Road Races is an event with several races like the Fortis 1\/2 Marathon
1897
+ Rotterdam, AD 10 Km Loop and Rotterdam on Wheels."}, "can_comment":1, "date_create":"1223208582",
1898
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
1899
+ "stat":"ok"}'
1900
+ http_version:
1901
+ recorded_at: Sun, 13 Apr 2014 20:36:36 GMT
1902
+ - request:
1903
+ method: post
1904
+ uri: https://api.flickr.com/services/rest/
1905
+ body:
1906
+ encoding: US-ASCII
1907
+ string: photoset_id=72157607755852863&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1908
+ headers:
1909
+ Accept-Encoding:
1910
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1911
+ Accept:
1912
+ - '*/*'
1913
+ User-Agent:
1914
+ - FlickRaw/0.9.8
1915
+ Authorization:
1916
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1917
+ oauth_nonce="7MXj8ujSo8TM5ftm49EZj9YYEBMH75E3se%2BzLm8XDWk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1918
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421396", oauth_token="<KUVA_ACCESS_TOKEN>",
1919
+ oauth_version="1.0"
1920
+ Content-Type:
1921
+ - application/x-www-form-urlencoded
1922
+ response:
1923
+ status:
1924
+ code: 200
1925
+ message: OK
1926
+ headers:
1927
+ Date:
1928
+ - Sun, 13 Apr 2014 20:36:36 GMT
1929
+ P3p:
1930
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1931
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1932
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1933
+ Cache-Control:
1934
+ - private
1935
+ X-Served-By:
1936
+ - www91.flickr.bf1.yahoo.com
1937
+ Vary:
1938
+ - Accept-Encoding
1939
+ Content-Length:
1940
+ - '379'
1941
+ Content-Type:
1942
+ - application/json
1943
+ Age:
1944
+ - '3'
1945
+ Via:
1946
+ - http/1.1 fts115.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1947
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1948
+ Server:
1949
+ - ATS
1950
+ Connection:
1951
+ - keep-alive
1952
+ body:
1953
+ encoding: UTF-8
1954
+ string: '{"photoset":{"id":"72157607755852863", "owner":"8558751@N06", "username":"ktnl",
1955
+ "primary":"2914800312", "secret":"eac896c089", "server":"3197", "farm":4,
1956
+ "photos":19, "count_views":"61", "count_comments":"0", "count_photos":"19",
1957
+ "count_videos":0, "title":{"_content":"Streetmasters ''08"}, "description":{"_content":"Streetmasters
1958
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
1959
+ breakdancers and streetdancers. This was the finale at Westblaak in Rotterdam."},
1960
+ "can_comment":1, "date_create":"1223203353", "date_update":"1356165012", "coverphoto_server":"0",
1961
+ "coverphoto_farm":0}, "stat":"ok"}'
1962
+ http_version:
1963
+ recorded_at: Sun, 13 Apr 2014 20:36:38 GMT
1964
+ - request:
1965
+ method: post
1966
+ uri: https://api.flickr.com/services/rest/
1967
+ body:
1968
+ encoding: US-ASCII
1969
+ string: photoset_id=72157607733513100&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1970
+ headers:
1971
+ Accept-Encoding:
1972
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1973
+ Accept:
1974
+ - '*/*'
1975
+ User-Agent:
1976
+ - FlickRaw/0.9.8
1977
+ Authorization:
1978
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1979
+ oauth_nonce="QIn27sWQDzXlAHRGxJ9H3o76a0jPBcM7DCFi6pchmlw%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1980
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421398", oauth_token="<KUVA_ACCESS_TOKEN>",
1981
+ oauth_version="1.0"
1982
+ Content-Type:
1983
+ - application/x-www-form-urlencoded
1984
+ response:
1985
+ status:
1986
+ code: 200
1987
+ message: OK
1988
+ headers:
1989
+ Date:
1990
+ - Sun, 13 Apr 2014 20:36:38 GMT
1991
+ P3p:
1992
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1993
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1994
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1995
+ Cache-Control:
1996
+ - private
1997
+ X-Served-By:
1998
+ - www159.flickr.bf1.yahoo.com
1999
+ Vary:
2000
+ - Accept-Encoding
2001
+ Content-Length:
2002
+ - '299'
2003
+ Content-Type:
2004
+ - application/json
2005
+ Age:
2006
+ - '0'
2007
+ Via:
2008
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2009
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2010
+ Server:
2011
+ - ATS
2012
+ Connection:
2013
+ - keep-alive
2014
+ body:
2015
+ encoding: UTF-8
2016
+ string: '{"photoset":{"id":"72157607733513100", "owner":"8558751@N06", "username":"ktnl",
2017
+ "primary":"2912489161", "secret":"d2fb34f716", "server":"3105", "farm":4,
2018
+ "photos":24, "count_views":"67", "count_comments":"0", "count_photos":"24",
2019
+ "count_videos":0, "title":{"_content":"Diergaarde Blijdorp"}, "description":{"_content":"Rotterdam
2020
+ Zoo: Diergaarde Blijdorp"}, "can_comment":1, "date_create":"1223156815", "date_update":"1356165012",
2021
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2022
+ http_version:
2023
+ recorded_at: Sun, 13 Apr 2014 20:36:38 GMT
2024
+ - request:
2025
+ method: post
2026
+ uri: https://api.flickr.com/services/rest/
2027
+ body:
2028
+ encoding: US-ASCII
2029
+ string: photoset_id=72157607758936165&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2030
+ headers:
2031
+ Accept-Encoding:
2032
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2033
+ Accept:
2034
+ - '*/*'
2035
+ User-Agent:
2036
+ - FlickRaw/0.9.8
2037
+ Authorization:
2038
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2039
+ oauth_nonce="JPOViI0hpKR9H5SFFcpDMc2sQoKRV4YQNSAP%2Bnm4Rb0%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2040
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421398", oauth_token="<KUVA_ACCESS_TOKEN>",
2041
+ oauth_version="1.0"
2042
+ Content-Type:
2043
+ - application/x-www-form-urlencoded
2044
+ response:
2045
+ status:
2046
+ code: 200
2047
+ message: OK
2048
+ headers:
2049
+ Date:
2050
+ - Sun, 13 Apr 2014 20:36:38 GMT
2051
+ P3p:
2052
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2053
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2054
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2055
+ Cache-Control:
2056
+ - private
2057
+ X-Served-By:
2058
+ - www138.flickr.bf1.yahoo.com
2059
+ Vary:
2060
+ - Accept-Encoding
2061
+ Content-Length:
2062
+ - '381'
2063
+ Content-Type:
2064
+ - application/json
2065
+ Age:
2066
+ - '3'
2067
+ Via:
2068
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2069
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2070
+ Server:
2071
+ - ATS
2072
+ Connection:
2073
+ - keep-alive
2074
+ body:
2075
+ encoding: UTF-8
2076
+ string: '{"photoset":{"id":"72157607758936165", "owner":"8558751@N06", "username":"ktnl",
2077
+ "primary":"2914184769", "secret":"26ca769e6a", "server":"3100", "farm":4,
2078
+ "photos":23, "count_views":"65", "count_comments":"0", "count_photos":"23",
2079
+ "count_videos":0, "title":{"_content":"I (heart) Threadless"}, "description":{"_content":"Photos
2080
+ from our so-called &quot;I (heart) Threadless&quot; photoshoot for our profile
2081
+ on the Threadless website. It took place under the Brienenoordbrug in Rotterdam."},
2082
+ "can_comment":1, "date_create":"1223211099", "date_update":"1356165013", "coverphoto_server":"0",
2083
+ "coverphoto_farm":0}, "stat":"ok"}'
2084
+ http_version:
2085
+ recorded_at: Sun, 13 Apr 2014 20:36:39 GMT
2086
+ - request:
2087
+ method: post
2088
+ uri: https://api.flickr.com/services/rest/
2089
+ body:
2090
+ encoding: US-ASCII
2091
+ string: photoset_id=72157604876037835&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2092
+ headers:
2093
+ Accept-Encoding:
2094
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2095
+ Accept:
2096
+ - '*/*'
2097
+ User-Agent:
2098
+ - FlickRaw/0.9.8
2099
+ Authorization:
2100
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2101
+ oauth_nonce="9x6x%2BhjMFj8EfpjGBRyoxsNHLMeoRv5u4J900rMEnsY%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2102
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421399", oauth_token="<KUVA_ACCESS_TOKEN>",
2103
+ oauth_version="1.0"
2104
+ Content-Type:
2105
+ - application/x-www-form-urlencoded
2106
+ response:
2107
+ status:
2108
+ code: 200
2109
+ message: OK
2110
+ headers:
2111
+ Date:
2112
+ - Sun, 13 Apr 2014 20:36:39 GMT
2113
+ P3p:
2114
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2115
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2116
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2117
+ Cache-Control:
2118
+ - private
2119
+ X-Served-By:
2120
+ - www299.flickr.bf1.yahoo.com
2121
+ Vary:
2122
+ - Accept-Encoding
2123
+ Content-Length:
2124
+ - '350'
2125
+ Content-Type:
2126
+ - application/json
2127
+ Age:
2128
+ - '0'
2129
+ Via:
2130
+ - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2131
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2132
+ Server:
2133
+ - ATS
2134
+ Connection:
2135
+ - keep-alive
2136
+ body:
2137
+ encoding: UTF-8
2138
+ string: '{"photoset":{"id":"72157604876037835", "owner":"8558751@N06", "username":"ktnl",
2139
+ "primary":"3514636763", "secret":"f13062d9e4", "server":"3317", "farm":4,
2140
+ "photos":16, "count_views":"330", "count_comments":"0", "count_photos":"16",
2141
+ "count_videos":0, "title":{"_content":"Me, Myself & I"}, "description":{"_content":"The
2142
+ title of this set says it all. These are obviously selfportrets or images
2143
+ of me made by other people."}, "can_comment":1, "date_create":"1209896547",
2144
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2145
+ "stat":"ok"}'
2146
+ http_version:
2147
+ recorded_at: Sun, 13 Apr 2014 20:36:40 GMT
2148
+ - request:
2149
+ method: post
2150
+ uri: https://api.flickr.com/services/rest/
2151
+ body:
2152
+ encoding: US-ASCII
2153
+ string: photoset_id=72157613432665353&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2154
+ headers:
2155
+ Accept-Encoding:
2156
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2157
+ Accept:
2158
+ - '*/*'
2159
+ User-Agent:
2160
+ - FlickRaw/0.9.8
2161
+ Authorization:
2162
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2163
+ oauth_nonce="X4ZADUvjschm85A4C%2Bdo39rExBEPph5uDm%2FNd1FuR14%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2164
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421400", oauth_token="<KUVA_ACCESS_TOKEN>",
2165
+ oauth_version="1.0"
2166
+ Content-Type:
2167
+ - application/x-www-form-urlencoded
2168
+ response:
2169
+ status:
2170
+ code: 200
2171
+ message: OK
2172
+ headers:
2173
+ Date:
2174
+ - Sun, 13 Apr 2014 20:36:40 GMT
2175
+ P3p:
2176
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2177
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2178
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2179
+ Cache-Control:
2180
+ - private
2181
+ X-Served-By:
2182
+ - www37.flickr.bf1.yahoo.com
2183
+ Vary:
2184
+ - Accept-Encoding
2185
+ Content-Length:
2186
+ - '285'
2187
+ Content-Type:
2188
+ - application/json
2189
+ Age:
2190
+ - '0'
2191
+ Via:
2192
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2193
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2194
+ Server:
2195
+ - ATS
2196
+ Connection:
2197
+ - keep-alive
2198
+ body:
2199
+ encoding: UTF-8
2200
+ string: '{"photoset":{"id":"72157613432665353", "owner":"8558751@N06", "username":"ktnl",
2201
+ "primary":"3831523902", "secret":"9cf20046e1", "server":"3534", "farm":4,
2202
+ "photos":33, "count_views":"64", "count_comments":"0", "count_photos":"33",
2203
+ "count_videos":0, "title":{"_content":"Portraits"}, "description":{"_content":"Portraits
2204
+ of people."}, "can_comment":1, "date_create":"1233996281", "date_update":"1356165012",
2205
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2206
+ http_version:
2207
+ recorded_at: Sun, 13 Apr 2014 20:36:40 GMT
2208
+ - request:
2209
+ method: post
2210
+ uri: https://api.flickr.com/services/rest/
2211
+ body:
2212
+ encoding: US-ASCII
2213
+ string: photoset_id=72157607956377672&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2214
+ headers:
2215
+ Accept-Encoding:
2216
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2217
+ Accept:
2218
+ - '*/*'
2219
+ User-Agent:
2220
+ - FlickRaw/0.9.8
2221
+ Authorization:
2222
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2223
+ oauth_nonce="%2Fwt5UkFrrkLL%2FiLoy8hY33ALxbC2PMjgWklxgdU4q3Q%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2224
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421400", oauth_token="<KUVA_ACCESS_TOKEN>",
2225
+ oauth_version="1.0"
2226
+ Content-Type:
2227
+ - application/x-www-form-urlencoded
2228
+ response:
2229
+ status:
2230
+ code: 200
2231
+ message: OK
2232
+ headers:
2233
+ Date:
2234
+ - Sun, 13 Apr 2014 20:36:40 GMT
2235
+ P3p:
2236
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2237
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2238
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2239
+ Cache-Control:
2240
+ - private
2241
+ X-Served-By:
2242
+ - www202.flickr.bf1.yahoo.com
2243
+ Vary:
2244
+ - Accept-Encoding
2245
+ Content-Length:
2246
+ - '405'
2247
+ Content-Type:
2248
+ - application/json
2249
+ Age:
2250
+ - '0'
2251
+ Via:
2252
+ - http/1.1 fts115.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2253
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2254
+ Server:
2255
+ - ATS
2256
+ Connection:
2257
+ - keep-alive
2258
+ body:
2259
+ encoding: UTF-8
2260
+ string: '{"photoset":{"id":"72157607956377672", "owner":"8558751@N06", "username":"ktnl",
2261
+ "primary":"2933987351", "secret":"22ce24ddf9", "server":"3179", "farm":4,
2262
+ "photos":21, "count_views":"86", "count_comments":"0", "count_photos":"21",
2263
+ "count_videos":0, "title":{"_content":"Egypt"}, "description":{"_content":"In
2264
+ August 2008 I went to Sharm El-Sheikh, Egypt with my brother. We''ve also
2265
+ visited Cairo while we were there. All of these were taken with my Fujifilm
2266
+ FinePix s9600 (which I''ve sold)."}, "can_comment":1, "date_create":"1223824830",
2267
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2268
+ "stat":"ok"}'
2269
+ http_version:
2270
+ recorded_at: Sun, 13 Apr 2014 20:36:40 GMT
2271
+ - request:
2272
+ method: post
2273
+ uri: https://api.flickr.com/services/rest/
2274
+ body:
2275
+ encoding: US-ASCII
2276
+ string: photoset_id=72157607747813484&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2277
+ headers:
2278
+ Accept-Encoding:
2279
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2280
+ Accept:
2281
+ - '*/*'
2282
+ User-Agent:
2283
+ - FlickRaw/0.9.8
2284
+ Authorization:
2285
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2286
+ oauth_nonce="Q15bJWYryLG%2BAFFJTL3deQLu4t%2FJgFyUPg9dwaseFOk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2287
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421400", oauth_token="<KUVA_ACCESS_TOKEN>",
2288
+ oauth_version="1.0"
2289
+ Content-Type:
2290
+ - application/x-www-form-urlencoded
2291
+ response:
2292
+ status:
2293
+ code: 200
2294
+ message: OK
2295
+ headers:
2296
+ Date:
2297
+ - Sun, 13 Apr 2014 20:36:40 GMT
2298
+ P3p:
2299
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2300
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2301
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2302
+ Cache-Control:
2303
+ - private
2304
+ X-Served-By:
2305
+ - www68.flickr.bf1.yahoo.com
2306
+ Vary:
2307
+ - Accept-Encoding
2308
+ Content-Length:
2309
+ - '361'
2310
+ Content-Type:
2311
+ - application/json
2312
+ Age:
2313
+ - '3'
2314
+ Via:
2315
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2316
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2317
+ Server:
2318
+ - ATS
2319
+ Connection:
2320
+ - keep-alive
2321
+ body:
2322
+ encoding: UTF-8
2323
+ string: '{"photoset":{"id":"72157607747813484", "owner":"8558751@N06", "username":"ktnl",
2324
+ "primary":"2914660920", "secret":"577a301104", "server":"3190", "farm":4,
2325
+ "photos":11, "count_views":"21", "count_comments":"0", "count_photos":"11",
2326
+ "count_videos":0, "title":{"_content":"Wereld havendagen"}, "description":{"_content":"The
2327
+ world harbor day is a large event in Rotterdam. It is meant to show what takes
2328
+ place in Europe''s biggest port."}, "can_comment":1, "date_create":"1223197948",
2329
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2330
+ "stat":"ok"}'
2331
+ http_version:
2332
+ recorded_at: Sun, 13 Apr 2014 20:36:41 GMT
2333
+ - request:
2334
+ method: post
2335
+ uri: https://api.flickr.com/services/rest/
2336
+ body:
2337
+ encoding: US-ASCII
2338
+ string: photoset_id=72157608065768431&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2339
+ headers:
2340
+ Accept-Encoding:
2341
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2342
+ Accept:
2343
+ - '*/*'
2344
+ User-Agent:
2345
+ - FlickRaw/0.9.8
2346
+ Authorization:
2347
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2348
+ oauth_nonce="OIDLsXXcOzFJw3HDDdbYCvHC6Lmw%2B57%2B4AfKfsyOMGQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2349
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421401", oauth_token="<KUVA_ACCESS_TOKEN>",
2350
+ oauth_version="1.0"
2351
+ Content-Type:
2352
+ - application/x-www-form-urlencoded
2353
+ response:
2354
+ status:
2355
+ code: 200
2356
+ message: OK
2357
+ headers:
2358
+ Date:
2359
+ - Sun, 13 Apr 2014 20:36:41 GMT
2360
+ P3p:
2361
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2362
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2363
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2364
+ Cache-Control:
2365
+ - private
2366
+ X-Served-By:
2367
+ - www10.flickr.bf1.yahoo.com
2368
+ Vary:
2369
+ - Accept-Encoding
2370
+ Content-Length:
2371
+ - '328'
2372
+ Content-Type:
2373
+ - application/json
2374
+ Age:
2375
+ - '0'
2376
+ Via:
2377
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2378
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2379
+ Server:
2380
+ - ATS
2381
+ Connection:
2382
+ - keep-alive
2383
+ body:
2384
+ encoding: UTF-8
2385
+ string: '{"photoset":{"id":"72157608065768431", "owner":"8558751@N06", "username":"ktnl",
2386
+ "primary":"3260304504", "secret":"b566f0c1fa", "server":"3403", "farm":4,
2387
+ "photos":8, "count_views":"315", "count_comments":"0", "count_photos":"8",
2388
+ "count_videos":0, "title":{"_content":"Gadgets & Gear"}, "description":{"_content":"This
2389
+ set contains photos from my gadgets, gear and other shots that fit this set."},
2390
+ "can_comment":1, "date_create":"1224100790", "date_update":"1356165012", "coverphoto_server":"0",
2391
+ "coverphoto_farm":0}, "stat":"ok"}'
2392
+ http_version:
2393
+ recorded_at: Sun, 13 Apr 2014 20:36:41 GMT
2394
+ - request:
2395
+ method: post
2396
+ uri: https://api.flickr.com/services/rest/
2397
+ body:
2398
+ encoding: US-ASCII
2399
+ string: photoset_id=72157602136210676&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2400
+ headers:
2401
+ Accept-Encoding:
2402
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2403
+ Accept:
2404
+ - '*/*'
2405
+ User-Agent:
2406
+ - FlickRaw/0.9.8
2407
+ Authorization:
2408
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2409
+ oauth_nonce="uIPph%2BVj%2FQ%2BFfv8098AF4ccblRCU6XCfqRkNvURKcCw%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2410
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421401", oauth_token="<KUVA_ACCESS_TOKEN>",
2411
+ oauth_version="1.0"
2412
+ Content-Type:
2413
+ - application/x-www-form-urlencoded
2414
+ response:
2415
+ status:
2416
+ code: 200
2417
+ message: OK
2418
+ headers:
2419
+ Date:
2420
+ - Sun, 13 Apr 2014 20:36:41 GMT
2421
+ P3p:
2422
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2423
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2424
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2425
+ Cache-Control:
2426
+ - private
2427
+ X-Served-By:
2428
+ - www24.flickr.bf1.yahoo.com
2429
+ Vary:
2430
+ - Accept-Encoding
2431
+ Content-Length:
2432
+ - '389'
2433
+ Content-Type:
2434
+ - application/json
2435
+ Age:
2436
+ - '0'
2437
+ Via:
2438
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2439
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2440
+ Server:
2441
+ - ATS
2442
+ Connection:
2443
+ - keep-alive
2444
+ body:
2445
+ encoding: UTF-8
2446
+ string: '{"photoset":{"id":"72157602136210676", "owner":"8558751@N06", "username":"ktnl",
2447
+ "primary":"2463323643", "secret":"49c99715da", "server":"2393", "farm":3,
2448
+ "photos":9, "count_views":"154", "count_comments":"0", "count_photos":"9",
2449
+ "count_videos":0, "title":{"_content":"Cars"}, "description":{"_content":"The
2450
+ photos in this set are of my cars. The first are from my Honda Civic 1.5 LSi
2451
+ ''93, which I''ve sold in the meanwhile. The other photos are from my BMW
2452
+ 316i Compact from ''98, which I currently own."}, "can_comment":1, "date_create":"1190657188",
2453
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2454
+ "stat":"ok"}'
2455
+ http_version:
2456
+ recorded_at: Sun, 13 Apr 2014 20:36:41 GMT
2457
+ - request:
2458
+ method: post
2459
+ uri: https://api.flickr.com/services/rest/
2460
+ body:
2461
+ encoding: US-ASCII
2462
+ string: photoset_id=72157609118757238&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2463
+ headers:
2464
+ Accept-Encoding:
2465
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2466
+ Accept:
2467
+ - '*/*'
2468
+ User-Agent:
2469
+ - FlickRaw/0.9.8
2470
+ Authorization:
2471
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2472
+ oauth_nonce="o17%2BCkuY%2BIcuPSLjKv%2FxYfmVT6yxXqo%2BCkJzEexOMLI%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2473
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421401", oauth_token="<KUVA_ACCESS_TOKEN>",
2474
+ oauth_version="1.0"
2475
+ Content-Type:
2476
+ - application/x-www-form-urlencoded
2477
+ response:
2478
+ status:
2479
+ code: 200
2480
+ message: OK
2481
+ headers:
2482
+ Date:
2483
+ - Sun, 13 Apr 2014 20:36:41 GMT
2484
+ P3p:
2485
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2486
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2487
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2488
+ Cache-Control:
2489
+ - private
2490
+ X-Served-By:
2491
+ - www294.flickr.bf1.yahoo.com
2492
+ Vary:
2493
+ - Accept-Encoding
2494
+ Content-Length:
2495
+ - '342'
2496
+ Content-Type:
2497
+ - application/json
2498
+ Age:
2499
+ - '0'
2500
+ Via:
2501
+ - http/1.1 fts115.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2502
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2503
+ Server:
2504
+ - ATS
2505
+ Connection:
2506
+ - keep-alive
2507
+ body:
2508
+ encoding: UTF-8
2509
+ string: '{"photoset":{"id":"72157609118757238", "owner":"8558751@N06", "username":"ktnl",
2510
+ "primary":"2979327772", "secret":"1709ca8191", "server":"3048", "farm":4,
2511
+ "photos":101, "count_views":"79", "count_comments":"0", "count_photos":"101",
2512
+ "count_videos":0, "title":{"_content":"Bokeh"}, "description":{"_content":"Photographs
2513
+ that I''ve taken with out-of-focus areas in it produced by a shallow depth
2514
+ of field."}, "can_comment":1, "date_create":"1226764945", "date_update":"1356165012",
2515
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2516
+ http_version:
2517
+ recorded_at: Sun, 13 Apr 2014 20:36:41 GMT
2518
+ - request:
2519
+ method: post
2520
+ uri: https://api.flickr.com/services/rest/
2521
+ body:
2522
+ encoding: US-ASCII
2523
+ string: photoset_id=72157608164792364&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2524
+ headers:
2525
+ Accept-Encoding:
2526
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2527
+ Accept:
2528
+ - '*/*'
2529
+ User-Agent:
2530
+ - FlickRaw/0.9.8
2531
+ Authorization:
2532
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2533
+ oauth_nonce="4BR%2BqCDXbhOINifOgizIlRmARTPNIPa%2FbiL2%2FFCkrZ0%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2534
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421401", oauth_token="<KUVA_ACCESS_TOKEN>",
2535
+ oauth_version="1.0"
2536
+ Content-Type:
2537
+ - application/x-www-form-urlencoded
2538
+ response:
2539
+ status:
2540
+ code: 200
2541
+ message: OK
2542
+ headers:
2543
+ Date:
2544
+ - Sun, 13 Apr 2014 20:36:42 GMT
2545
+ P3p:
2546
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2547
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2548
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2549
+ Cache-Control:
2550
+ - private
2551
+ X-Served-By:
2552
+ - www170.flickr.bf1.yahoo.com
2553
+ Vary:
2554
+ - Accept-Encoding
2555
+ Content-Length:
2556
+ - '329'
2557
+ Content-Type:
2558
+ - application/json
2559
+ Age:
2560
+ - '0'
2561
+ Via:
2562
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2563
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2564
+ Server:
2565
+ - ATS
2566
+ Connection:
2567
+ - keep-alive
2568
+ body:
2569
+ encoding: UTF-8
2570
+ string: '{"photoset":{"id":"72157608164792364", "owner":"8558751@N06", "username":"ktnl",
2571
+ "primary":"2955114833", "secret":"7322751b77", "server":"3029", "farm":4,
2572
+ "photos":26, "count_views":"46", "count_comments":"0", "count_photos":"26",
2573
+ "count_videos":0, "title":{"_content":"Selective Colors"}, "description":{"_content":"This
2574
+ set contains photos that are mainly black and white with a selective color."},
2575
+ "can_comment":1, "date_create":"1224414579", "date_update":"1356165012", "coverphoto_server":"0",
2576
+ "coverphoto_farm":0}, "stat":"ok"}'
2577
+ http_version:
2578
+ recorded_at: Sun, 13 Apr 2014 20:36:42 GMT
2579
+ - request:
2580
+ method: post
2581
+ uri: https://api.flickr.com/services/rest/
2582
+ body:
2583
+ encoding: US-ASCII
2584
+ string: photoset_id=72157608177901148&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2585
+ headers:
2586
+ Accept-Encoding:
2587
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2588
+ Accept:
2589
+ - '*/*'
2590
+ User-Agent:
2591
+ - FlickRaw/0.9.8
2592
+ Authorization:
2593
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2594
+ oauth_nonce="bDMFVl06c2F2FxUBFjKyvX1rwkgabhKtfW%2F%2BCPbvD4M%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2595
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421402", oauth_token="<KUVA_ACCESS_TOKEN>",
2596
+ oauth_version="1.0"
2597
+ Content-Type:
2598
+ - application/x-www-form-urlencoded
2599
+ response:
2600
+ status:
2601
+ code: 200
2602
+ message: OK
2603
+ headers:
2604
+ Date:
2605
+ - Sun, 13 Apr 2014 20:36:42 GMT
2606
+ P3p:
2607
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2608
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2609
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2610
+ Cache-Control:
2611
+ - private
2612
+ X-Served-By:
2613
+ - www159.flickr.bf1.yahoo.com
2614
+ Vary:
2615
+ - Accept-Encoding
2616
+ Content-Length:
2617
+ - '363'
2618
+ Content-Type:
2619
+ - application/json
2620
+ Age:
2621
+ - '0'
2622
+ Via:
2623
+ - http/1.1 fts113.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2624
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2625
+ Server:
2626
+ - ATS
2627
+ Connection:
2628
+ - keep-alive
2629
+ body:
2630
+ encoding: UTF-8
2631
+ string: '{"photoset":{"id":"72157608177901148", "owner":"8558751@N06", "username":"ktnl",
2632
+ "primary":"3643167761", "secret":"32da16b737", "server":"2465", "farm":3,
2633
+ "photos":208, "count_views":"43", "count_comments":"0", "count_photos":"208",
2634
+ "count_videos":0, "title":{"_content":"Black & White"}, "description":{"_content":"The
2635
+ title of this set is pretty self explanatory, but just to make it more clear...
2636
+ it contains black and white photographs."}, "can_comment":1, "date_create":"1224448207",
2637
+ "date_update":"1356165013", "coverphoto_server":"0", "coverphoto_farm":0},
2638
+ "stat":"ok"}'
2639
+ http_version:
2640
+ recorded_at: Sun, 13 Apr 2014 20:36:42 GMT
2641
+ - request:
2642
+ method: post
2643
+ uri: https://api.flickr.com/services/rest/
2644
+ body:
2645
+ encoding: US-ASCII
2646
+ string: photoset_id=72157609130124623&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2647
+ headers:
2648
+ Accept-Encoding:
2649
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2650
+ Accept:
2651
+ - '*/*'
2652
+ User-Agent:
2653
+ - FlickRaw/0.9.8
2654
+ Authorization:
2655
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2656
+ oauth_nonce="NlFYmSSS4UjZbZPrUcR4CwG%2Fc76WwaQ9aq5urLxkBFk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2657
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421402", oauth_token="<KUVA_ACCESS_TOKEN>",
2658
+ oauth_version="1.0"
2659
+ Content-Type:
2660
+ - application/x-www-form-urlencoded
2661
+ response:
2662
+ status:
2663
+ code: 200
2664
+ message: OK
2665
+ headers:
2666
+ Date:
2667
+ - Sun, 13 Apr 2014 20:36:42 GMT
2668
+ P3p:
2669
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2670
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2671
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2672
+ Cache-Control:
2673
+ - private
2674
+ X-Served-By:
2675
+ - www82.flickr.bf1.yahoo.com
2676
+ Vary:
2677
+ - Accept-Encoding
2678
+ Content-Length:
2679
+ - '280'
2680
+ Content-Type:
2681
+ - application/json
2682
+ Age:
2683
+ - '3'
2684
+ Via:
2685
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2686
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2687
+ Server:
2688
+ - ATS
2689
+ Connection:
2690
+ - keep-alive
2691
+ body:
2692
+ encoding: UTF-8
2693
+ string: '{"photoset":{"id":"72157609130124623", "owner":"8558751@N06", "username":"ktnl",
2694
+ "primary":"3031746973", "secret":"179aa08c2e", "server":"3294", "farm":4,
2695
+ "photos":8, "count_views":"35", "count_comments":"0", "count_photos":"8",
2696
+ "count_videos":0, "title":{"_content":"Product Photography"}, "description":{"_content":""},
2697
+ "can_comment":1, "date_create":"1226763941", "date_update":"1356165012", "coverphoto_server":"0",
2698
+ "coverphoto_farm":0}, "stat":"ok"}'
2699
+ http_version:
2700
+ recorded_at: Sun, 13 Apr 2014 20:36:43 GMT
2701
+ - request:
2702
+ method: post
2703
+ uri: https://api.flickr.com/services/rest/
2704
+ body:
2705
+ encoding: US-ASCII
2706
+ string: photoset_id=72157600303479345&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2707
+ headers:
2708
+ Accept-Encoding:
2709
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2710
+ Accept:
2711
+ - '*/*'
2712
+ User-Agent:
2713
+ - FlickRaw/0.9.8
2714
+ Authorization:
2715
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2716
+ oauth_nonce="Bq4PbffXpCS9%2F3fCA0Vuy9jZHbJeKCHiEFtcAJWeuKg%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2717
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397421403", oauth_token="<KUVA_ACCESS_TOKEN>",
2718
+ oauth_version="1.0"
2719
+ Content-Type:
2720
+ - application/x-www-form-urlencoded
2721
+ response:
2722
+ status:
2723
+ code: 200
2724
+ message: OK
2725
+ headers:
2726
+ Date:
2727
+ - Sun, 13 Apr 2014 20:36:43 GMT
2728
+ P3p:
2729
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2730
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2731
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2732
+ Cache-Control:
2733
+ - private
2734
+ X-Served-By:
2735
+ - www276.flickr.bf1.yahoo.com
2736
+ Vary:
2737
+ - Accept-Encoding
2738
+ Content-Length:
2739
+ - '290'
2740
+ Content-Type:
2741
+ - application/json
2742
+ Age:
2743
+ - '0'
2744
+ Via:
2745
+ - http/1.1 fts122.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2746
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2747
+ Server:
2748
+ - ATS
2749
+ Connection:
2750
+ - keep-alive
2751
+ body:
2752
+ encoding: UTF-8
2753
+ string: '{"photoset":{"id":"72157600303479345", "owner":"8558751@N06", "username":"ktnl",
2754
+ "primary":"2464410072", "secret":"99a2e64e3e", "server":"2272", "farm":3,
2755
+ "photos":7, "count_views":"54", "count_comments":"0", "count_photos":"7",
2756
+ "count_videos":0, "title":{"_content":"Nature"}, "description":{"_content":"Flora,
2757
+ fauna and landscapes."}, "can_comment":1, "date_create":"1180873266", "date_update":"1356165017",
2758
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2759
+ http_version:
2760
+ recorded_at: Sun, 13 Apr 2014 20:36:43 GMT
2761
+ recorded_with: VCR 2.9.0