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,2918 @@
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.reflection.getMethods&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="vnjPpcmw%2FN19Zop7qZSb02pPQGV8KaNyd%2Fih7LCWmh8%3D", oauth_signature="<KUVA_SHARED_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413962", oauth_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 18:32:42 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
+ - www245.flickr.bf1.yahoo.com
38
+ Vary:
39
+ - Accept-Encoding
40
+ Content-Length:
41
+ - '1432'
42
+ Content-Type:
43
+ - application/json
44
+ Age:
45
+ - '0'
46
+ Via:
47
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r03.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
49
+ Server:
50
+ - ATS
51
+ Connection:
52
+ - keep-alive
53
+ body:
54
+ encoding: UTF-8
55
+ string: '{"methods":{"method":[{"_content":"flickr.activity.userComments"},
56
+ {"_content":"flickr.activity.userPhotos"}, {"_content":"flickr.auth.checkToken"},
57
+ {"_content":"flickr.auth.getFrob"}, {"_content":"flickr.auth.getFullToken"},
58
+ {"_content":"flickr.auth.getToken"}, {"_content":"flickr.auth.oauth.checkToken"},
59
+ {"_content":"flickr.auth.oauth.getAccessToken"}, {"_content":"flickr.blogs.getList"},
60
+ {"_content":"flickr.blogs.getServices"}, {"_content":"flickr.blogs.postPhoto"},
61
+ {"_content":"flickr.cameras.getBrandModels"}, {"_content":"flickr.cameras.getBrands"},
62
+ {"_content":"flickr.collections.getInfo"}, {"_content":"flickr.collections.getTree"},
63
+ {"_content":"flickr.commons.getInstitutions"}, {"_content":"flickr.contacts.getList"},
64
+ {"_content":"flickr.contacts.getListRecentlyUploaded"}, {"_content":"flickr.contacts.getPublicList"},
65
+ {"_content":"flickr.contacts.getTaggingSuggestions"}, {"_content":"flickr.favorites.add"},
66
+ {"_content":"flickr.favorites.getContext"}, {"_content":"flickr.favorites.getList"},
67
+ {"_content":"flickr.favorites.getPublicList"}, {"_content":"flickr.favorites.remove"},
68
+ {"_content":"flickr.galleries.addPhoto"}, {"_content":"flickr.galleries.create"},
69
+ {"_content":"flickr.galleries.editMeta"}, {"_content":"flickr.galleries.editPhoto"},
70
+ {"_content":"flickr.galleries.editPhotos"}, {"_content":"flickr.galleries.getInfo"},
71
+ {"_content":"flickr.galleries.getList"}, {"_content":"flickr.galleries.getListForPhoto"},
72
+ {"_content":"flickr.galleries.getPhotos"}, {"_content":"flickr.groups.browse"},
73
+ {"_content":"flickr.groups.discuss.replies.add"}, {"_content":"flickr.groups.discuss.replies.delete"},
74
+ {"_content":"flickr.groups.discuss.replies.edit"}, {"_content":"flickr.groups.discuss.replies.getInfo"},
75
+ {"_content":"flickr.groups.discuss.replies.getList"}, {"_content":"flickr.groups.discuss.topics.add"},
76
+ {"_content":"flickr.groups.discuss.topics.getInfo"}, {"_content":"flickr.groups.discuss.topics.getList"},
77
+ {"_content":"flickr.groups.getInfo"}, {"_content":"flickr.groups.join"}, {"_content":"flickr.groups.joinRequest"},
78
+ {"_content":"flickr.groups.leave"}, {"_content":"flickr.groups.members.getList"},
79
+ {"_content":"flickr.groups.pools.add"}, {"_content":"flickr.groups.pools.getContext"},
80
+ {"_content":"flickr.groups.pools.getGroups"}, {"_content":"flickr.groups.pools.getPhotos"},
81
+ {"_content":"flickr.groups.pools.remove"}, {"_content":"flickr.groups.search"},
82
+ {"_content":"flickr.interestingness.getList"}, {"_content":"flickr.machinetags.getNamespaces"},
83
+ {"_content":"flickr.machinetags.getPairs"}, {"_content":"flickr.machinetags.getPredicates"},
84
+ {"_content":"flickr.machinetags.getRecentValues"}, {"_content":"flickr.machinetags.getValues"},
85
+ {"_content":"flickr.panda.getList"}, {"_content":"flickr.panda.getPhotos"},
86
+ {"_content":"flickr.people.findByEmail"}, {"_content":"flickr.people.findByUsername"},
87
+ {"_content":"flickr.people.getGroups"}, {"_content":"flickr.people.getInfo"},
88
+ {"_content":"flickr.people.getLimits"}, {"_content":"flickr.people.getPhotos"},
89
+ {"_content":"flickr.people.getPhotosOf"}, {"_content":"flickr.people.getPublicGroups"},
90
+ {"_content":"flickr.people.getPublicPhotos"}, {"_content":"flickr.people.getUploadStatus"},
91
+ {"_content":"flickr.photos.addTags"}, {"_content":"flickr.photos.comments.addComment"},
92
+ {"_content":"flickr.photos.comments.deleteComment"}, {"_content":"flickr.photos.comments.editComment"},
93
+ {"_content":"flickr.photos.comments.getList"}, {"_content":"flickr.photos.comments.getRecentForContacts"},
94
+ {"_content":"flickr.photos.delete"}, {"_content":"flickr.photos.geo.batchCorrectLocation"},
95
+ {"_content":"flickr.photos.geo.correctLocation"}, {"_content":"flickr.photos.geo.getLocation"},
96
+ {"_content":"flickr.photos.geo.getPerms"}, {"_content":"flickr.photos.geo.photosForLocation"},
97
+ {"_content":"flickr.photos.geo.removeLocation"}, {"_content":"flickr.photos.geo.setContext"},
98
+ {"_content":"flickr.photos.geo.setLocation"}, {"_content":"flickr.photos.geo.setPerms"},
99
+ {"_content":"flickr.photos.getAllContexts"}, {"_content":"flickr.photos.getContactsPhotos"},
100
+ {"_content":"flickr.photos.getContactsPublicPhotos"}, {"_content":"flickr.photos.getContext"},
101
+ {"_content":"flickr.photos.getCounts"}, {"_content":"flickr.photos.getExif"},
102
+ {"_content":"flickr.photos.getFavorites"}, {"_content":"flickr.photos.getInfo"},
103
+ {"_content":"flickr.photos.getNotInSet"}, {"_content":"flickr.photos.getPerms"},
104
+ {"_content":"flickr.photos.getRecent"}, {"_content":"flickr.photos.getSizes"},
105
+ {"_content":"flickr.photos.getUntagged"}, {"_content":"flickr.photos.getWithGeoData"},
106
+ {"_content":"flickr.photos.getWithoutGeoData"}, {"_content":"flickr.photos.licenses.getInfo"},
107
+ {"_content":"flickr.photos.licenses.setLicense"}, {"_content":"flickr.photos.notes.add"},
108
+ {"_content":"flickr.photos.notes.delete"}, {"_content":"flickr.photos.notes.edit"},
109
+ {"_content":"flickr.photos.people.add"}, {"_content":"flickr.photos.people.delete"},
110
+ {"_content":"flickr.photos.people.deleteCoords"}, {"_content":"flickr.photos.people.editCoords"},
111
+ {"_content":"flickr.photos.people.getList"}, {"_content":"flickr.photos.recentlyUpdated"},
112
+ {"_content":"flickr.photos.removeTag"}, {"_content":"flickr.photos.search"},
113
+ {"_content":"flickr.photos.setContentType"}, {"_content":"flickr.photos.setDates"},
114
+ {"_content":"flickr.photos.setMeta"}, {"_content":"flickr.photos.setPerms"},
115
+ {"_content":"flickr.photos.setSafetyLevel"}, {"_content":"flickr.photos.setTags"},
116
+ {"_content":"flickr.photos.suggestions.approveSuggestion"}, {"_content":"flickr.photos.suggestions.getList"},
117
+ {"_content":"flickr.photos.suggestions.rejectSuggestion"}, {"_content":"flickr.photos.suggestions.removeSuggestion"},
118
+ {"_content":"flickr.photos.suggestions.suggestLocation"}, {"_content":"flickr.photos.transform.rotate"},
119
+ {"_content":"flickr.photos.upload.checkTickets"}, {"_content":"flickr.photosets.addPhoto"},
120
+ {"_content":"flickr.photosets.comments.addComment"}, {"_content":"flickr.photosets.comments.deleteComment"},
121
+ {"_content":"flickr.photosets.comments.editComment"}, {"_content":"flickr.photosets.comments.getList"},
122
+ {"_content":"flickr.photosets.create"}, {"_content":"flickr.photosets.delete"},
123
+ {"_content":"flickr.photosets.editMeta"}, {"_content":"flickr.photosets.editPhotos"},
124
+ {"_content":"flickr.photosets.getContext"}, {"_content":"flickr.photosets.getInfo"},
125
+ {"_content":"flickr.photosets.getList"}, {"_content":"flickr.photosets.getPhotos"},
126
+ {"_content":"flickr.photosets.orderSets"}, {"_content":"flickr.photosets.removePhoto"},
127
+ {"_content":"flickr.photosets.removePhotos"}, {"_content":"flickr.photosets.reorderPhotos"},
128
+ {"_content":"flickr.photosets.setPrimaryPhoto"}, {"_content":"flickr.places.find"},
129
+ {"_content":"flickr.places.findByLatLon"}, {"_content":"flickr.places.getChildrenWithPhotosPublic"},
130
+ {"_content":"flickr.places.getInfo"}, {"_content":"flickr.places.getInfoByUrl"},
131
+ {"_content":"flickr.places.getPlaceTypes"}, {"_content":"flickr.places.getShapeHistory"},
132
+ {"_content":"flickr.places.getTopPlacesList"}, {"_content":"flickr.places.placesForBoundingBox"},
133
+ {"_content":"flickr.places.placesForContacts"}, {"_content":"flickr.places.placesForTags"},
134
+ {"_content":"flickr.places.placesForUser"}, {"_content":"flickr.places.resolvePlaceId"},
135
+ {"_content":"flickr.places.resolvePlaceURL"}, {"_content":"flickr.places.tagsForPlace"},
136
+ {"_content":"flickr.prefs.getContentType"}, {"_content":"flickr.prefs.getGeoPerms"},
137
+ {"_content":"flickr.prefs.getHidden"}, {"_content":"flickr.prefs.getPrivacy"},
138
+ {"_content":"flickr.prefs.getSafetyLevel"}, {"_content":"flickr.push.getSubscriptions"},
139
+ {"_content":"flickr.push.getTopics"}, {"_content":"flickr.push.subscribe"},
140
+ {"_content":"flickr.push.unsubscribe"}, {"_content":"flickr.reflection.getMethodInfo"},
141
+ {"_content":"flickr.reflection.getMethods"}, {"_content":"flickr.stats.getCollectionDomains"},
142
+ {"_content":"flickr.stats.getCollectionReferrers"}, {"_content":"flickr.stats.getCollectionStats"},
143
+ {"_content":"flickr.stats.getCSVFiles"}, {"_content":"flickr.stats.getPhotoDomains"},
144
+ {"_content":"flickr.stats.getPhotoReferrers"}, {"_content":"flickr.stats.getPhotosetDomains"},
145
+ {"_content":"flickr.stats.getPhotosetReferrers"}, {"_content":"flickr.stats.getPhotosetStats"},
146
+ {"_content":"flickr.stats.getPhotoStats"}, {"_content":"flickr.stats.getPhotostreamDomains"},
147
+ {"_content":"flickr.stats.getPhotostreamReferrers"}, {"_content":"flickr.stats.getPhotostreamStats"},
148
+ {"_content":"flickr.stats.getPopularPhotos"}, {"_content":"flickr.stats.getTotalViews"},
149
+ {"_content":"flickr.tags.getClusterPhotos"}, {"_content":"flickr.tags.getClusters"},
150
+ {"_content":"flickr.tags.getHotList"}, {"_content":"flickr.tags.getListPhoto"},
151
+ {"_content":"flickr.tags.getListUser"}, {"_content":"flickr.tags.getListUserPopular"},
152
+ {"_content":"flickr.tags.getListUserRaw"}, {"_content":"flickr.tags.getMostFrequentlyUsed"},
153
+ {"_content":"flickr.tags.getRelated"}, {"_content":"flickr.test.echo"}, {"_content":"flickr.test.login"},
154
+ {"_content":"flickr.test.null"}, {"_content":"flickr.urls.getGroup"}, {"_content":"flickr.urls.getUserPhotos"},
155
+ {"_content":"flickr.urls.getUserProfile"}, {"_content":"flickr.urls.lookupGallery"},
156
+ {"_content":"flickr.urls.lookupGroup"}, {"_content":"flickr.urls.lookupUser"}]},
157
+ "stat":"ok"}'
158
+ http_version:
159
+ recorded_at: Sun, 13 Apr 2014 18:32:42 GMT
160
+ - request:
161
+ method: post
162
+ uri: https://api.flickr.com/services/rest/
163
+ body:
164
+ encoding: US-ASCII
165
+ string: method=flickr.photosets.getList&format=json&nojsoncallback=1
166
+ headers:
167
+ Accept-Encoding:
168
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
169
+ Accept:
170
+ - '*/*'
171
+ User-Agent:
172
+ - FlickRaw/0.9.8
173
+ Authorization:
174
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
175
+ oauth_nonce="4jw56gs5z2FBdlT8nJRrErXK1fK5%2FmQRLFVzVrH4DIc%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
176
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413962", oauth_token="<KUVA_ACCESS_TOKEN>",
177
+ oauth_version="1.0"
178
+ Content-Type:
179
+ - application/x-www-form-urlencoded
180
+ response:
181
+ status:
182
+ code: 200
183
+ message: OK
184
+ headers:
185
+ Date:
186
+ - Sun, 13 Apr 2014 18:32:43 GMT
187
+ P3p:
188
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
189
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
190
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
191
+ Cache-Control:
192
+ - private
193
+ X-Served-By:
194
+ - www123.flickr.bf1.yahoo.com
195
+ Vary:
196
+ - Accept-Encoding
197
+ Content-Length:
198
+ - '4368'
199
+ Content-Type:
200
+ - application/json
201
+ Age:
202
+ - '3'
203
+ Via:
204
+ - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
205
+ http/1.1 r13.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
206
+ Server:
207
+ - ATS
208
+ Connection:
209
+ - keep-alive
210
+ body:
211
+ encoding: UTF-8
212
+ string: '{"photosets":{"cancreate":1, "page":1, "pages":1, "perpage":40, "total":40,
213
+ "photoset":[{"id":"72157632367381040", "primary":"8318972536", "secret":"eda82f692f",
214
+ "server":"8499", "farm":9, "photos":"28", "videos":0, "title":{"_content":"Paris"},
215
+ "description":{"_content":"These shots were taken in Paris, France in December
216
+ 2012. Most of them are taken with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina
217
+ 12-24mm f\/4."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"31",
218
+ "count_comments":"0", "can_comment":1, "date_create":"1356715289", "date_update":"1356717162"},
219
+ {"id":"72157632303248759", "primary":"8294626229", "secret":"7b8aaeab2b",
220
+ "server":"8081", "farm":9, "photos":"69", "videos":0, "title":{"_content":"Bali"},
221
+ "description":{"_content":"These shots were taken on Bali in May 2012. Most
222
+ of them are taken with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm
223
+ f\/4."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"21",
224
+ "count_comments":"0", "can_comment":1, "date_create":"1356131625", "date_update":"1356189559"},
225
+ {"id":"72157629017578067", "primary":"6757041485", "secret":"643ba72439",
226
+ "server":"7163", "farm":8, "photos":"69", "videos":0, "title":{"_content":"Aruba"},
227
+ "description":{"_content":"These shots were taken on Aruba (One Happy Island)
228
+ in March 2011. Most of them are taken with my Nikon D80 and Tokina 12-24mm
229
+ f\/4.\n\nObviously it''s Aruba from a different point of view."}, "needs_interstitial":0,
230
+ "visibility_can_see_set":1, "count_views":"73", "count_comments":"4", "can_comment":1,
231
+ "date_create":"1327442512", "date_update":"1356165010"}, {"id":"72157628378160739",
232
+ "primary":"6495153913", "secret":"1ba1b324ef", "server":"7145", "farm":8,
233
+ "photos":"51", "videos":0, "title":{"_content":"Carnaval di Aruba ''11"},
234
+ "description":{"_content":"These shots were taken in and around Oranjestad,
235
+ Aruba during the Carnival in March 2011."}, "needs_interstitial":0, "visibility_can_see_set":1,
236
+ "count_views":"89", "count_comments":"0", "can_comment":1, "date_create":"1323640679",
237
+ "date_update":"1356165010"}, {"id":"72157625433863013", "primary":"5245419190",
238
+ "secret":"54cdd111fd", "server":"5282", "farm":6, "photos":"10", "videos":0,
239
+ "title":{"_content":"Zoom Experience ''10"}, "description":{"_content":"These
240
+ shots were taken at the Zoom Experience 2010 in the Jaarbeurs, Utrecht. They
241
+ all feature the model Suraya."}, "needs_interstitial":0, "visibility_can_see_set":1,
242
+ "count_views":"123", "count_comments":"0", "can_comment":1, "date_create":"1291854812",
243
+ "date_update":"1356165009"}, {"id":"72157625523500610", "primary":"5230378378",
244
+ "secret":"fecddda258", "server":"5242", "farm":6, "photos":"30", "videos":0,
245
+ "title":{"_content":"The Hague"}, "description":{"_content":"These shots were
246
+ taken on a sunny afternoon in the centre of The Hague, The Netherlands. Most
247
+ of them have been taken in or around the Binnenhof, where the Dutch parliament
248
+ resides."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"47",
249
+ "count_comments":"0", "can_comment":1, "date_create":"1291422677", "date_update":"1356165010"},
250
+ {"id":"72157624624572356", "primary":"4847033367", "secret":"f455849b72",
251
+ "server":"4146", "farm":5, "photos":"57", "videos":0, "title":{"_content":"Zomer
252
+ Carnaval ''10"}, "description":{"_content":"These shots were taken at the
253
+ Ortel Zomer Carnaval 2010 in Rotterdam. Most of them were taken with my Nikon
254
+ 50 mm f\/1.8D at Leuvehaven and some of them were taken with my Nikon 70-300mm
255
+ f4.5-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"266",
256
+ "count_comments":"0", "can_comment":1, "date_create":"1280613448", "date_update":"1356165011"},
257
+ {"id":"72157623902001333", "primary":"4593271974", "secret":"d2482de61a",
258
+ "server":"3544", "farm":4, "photos":"47", "videos":0, "title":{"_content":"5
259
+ Mei Festival"}, "description":{"_content":"A festival in The Hague on May
260
+ 5th, which is Liberation Day in The Netherlands. \n\nIn this set you''ll be
261
+ able to view the following artists: Winne, Jurk and Mischu Laikah."}, "needs_interstitial":0,
262
+ "visibility_can_see_set":1, "count_views":"71", "count_comments":"0", "can_comment":1,
263
+ "date_create":"1273437402", "date_update":"1356165010"}, {"id":"72157623700320221",
264
+ "primary":"4507629959", "secret":"42bce98099", "server":"2726", "farm":3,
265
+ "photos":"23", "videos":0, "title":{"_content":"Val Thorens"}, "description":{"_content":"Most
266
+ of these shots were taken in Val Thorens, France with a Nikon D80."}, "needs_interstitial":0,
267
+ "visibility_can_see_set":1, "count_views":"89", "count_comments":"0", "can_comment":1,
268
+ "date_create":"1270915823", "date_update":"1356165010"}, {"id":"72157622678558767",
269
+ "primary":"4103218587", "secret":"4c8bdd07b5", "server":"2631", "farm":3,
270
+ "photos":"40", "videos":0, "title":{"_content":"Zoom Experience ''09"}, "description":{"_content":"Zoom
271
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
272
+ in Utrecht by the Zoom.nl magazine."}, "needs_interstitial":0, "visibility_can_see_set":1,
273
+ "count_views":"153", "count_comments":"0", "can_comment":1, "date_create":"1258229906",
274
+ "date_update":"1356165010"}, {"id":"72157622216400117", "primary":"3910073517",
275
+ "secret":"2ee8ba3d74", "server":"2631", "farm":3, "photos":"152", "videos":0,
276
+ "title":{"_content":"Rome"}, "description":{"_content":"Most of these shots
277
+ were taken in Rome, Italy with my Nikkor 50 mm f\/1.8. The others were taken
278
+ with the Nikkor 55-200 mm f\/4.0-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1,
279
+ "count_views":"108", "count_comments":"0", "can_comment":1, "date_create":"1252704238",
280
+ "date_update":"1356165011"}, {"id":"72157622251601466", "primary":"3889860224",
281
+ "secret":"9333bbc160", "server":"2435", "farm":3, "photos":"81", "videos":0,
282
+ "title":{"_content":"Rome (UWA)"}, "description":{"_content":"These shots
283
+ were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide Angle
284
+ lens, in Rome, Italy."}, "needs_interstitial":0, "visibility_can_see_set":1,
285
+ "count_views":"234", "count_comments":"0", "can_comment":1, "date_create":"1252152755",
286
+ "date_update":"1356165011"}, {"id":"72157622042947321", "primary":"3865054146",
287
+ "secret":"e5d907bd9a", "server":"2637", "farm":3, "photos":"27", "videos":0,
288
+ "title":{"_content":"Madurodam At Night"}, "description":{"_content":"These
289
+ shots were taken during the evening at Madurodam, Scheveningen. "}, "needs_interstitial":0,
290
+ "visibility_can_see_set":1, "count_views":"93", "count_comments":"0", "can_comment":1,
291
+ "date_create":"1251468756", "date_update":"1356165010"}, {"id":"72157622067739660",
292
+ "primary":"3843992302", "secret":"e0fc5eb971", "server":"2608", "farm":3,
293
+ "photos":"76", "videos":0, "title":{"_content":"Streetmasters ''09"}, "description":{"_content":"Streetmasters
294
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
295
+ breakdancers, streetdancers and streetsoccer players. As of the 2009 edition
296
+ there also is a freerunners dicipline."}, "needs_interstitial":0, "visibility_can_see_set":1,
297
+ "count_views":"137", "count_comments":"0", "can_comment":1, "date_create":"1250543322",
298
+ "date_update":"1356165011"}, {"id":"72157621986269708", "primary":"3802687475",
299
+ "secret":"7007c87d22", "server":"3493", "farm":4, "photos":"21", "videos":0,
300
+ "title":{"_content":"Fit For Free Dance Parade"}, "description":{"_content":"The
301
+ Fit For Free Dance Parade is a parade of trucks with DJ''s and dancers on
302
+ them, which goes straight through Rotterdam."}, "needs_interstitial":0, "visibility_can_see_set":1,
303
+ "count_views":"97", "count_comments":"0", "can_comment":1, "date_create":"1249803502",
304
+ "date_update":"1356165009"}, {"id":"72157621709918913", "primary":"3757528316",
305
+ "secret":"a20bd0c139", "server":"2610", "farm":3, "photos":"58", "videos":0,
306
+ "title":{"_content":"Zomer Carnaval ''09"}, "description":{"_content":"These
307
+ shots were taken at the Ortel Zomer Carnaval 2009 in Rotterdam. They were
308
+ al taken with my Nikon 50 mm f\/1.8D at the Coolsingel."}, "needs_interstitial":0,
309
+ "visibility_can_see_set":1, "count_views":"290", "count_comments":"0", "can_comment":1,
310
+ "date_create":"1248592969", "date_update":"1356165010"}, {"id":"72157621226409953",
311
+ "primary":"3713875609", "secret":"4b441bf691", "server":"3474", "farm":4,
312
+ "photos":"15", "videos":0, "title":{"_content":"North Sea Round Town"}, "description":{"_content":"North
313
+ Sea Round Town is the warming-up of the North Sea Jazz Festival in Rotterdam."},
314
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"124", "count_comments":"0",
315
+ "can_comment":1, "date_create":"1247436891", "date_update":"1356165010"},
316
+ {"id":"72157620266565933", "primary":"3654106253", "secret":"3b5eca01e6",
317
+ "server":"3394", "farm":4, "photos":"186", "videos":0, "title":{"_content":"New
318
+ York City"}, "description":{"_content":"These shots were taken with my Nikon
319
+ D80 and the Nikkor 50mm f\/1.8D in New York City, USA. Some of the shots were
320
+ taken with the Nikkor 55-200mm f\/4-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1,
321
+ "count_views":"491", "count_comments":"0", "can_comment":1, "date_create":"1245782076",
322
+ "date_update":"1356165013"}, {"id":"72157619874753455", "primary":"3643159571",
323
+ "secret":"f7623d5eaf", "server":"3570", "farm":4, "photos":"133", "videos":0,
324
+ "title":{"_content":"New York City (UWA)"}, "description":{"_content":"These
325
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
326
+ Angle lens, in New York City, USA."}, "needs_interstitial":0, "visibility_can_see_set":1,
327
+ "count_views":"401", "count_comments":"0", "can_comment":1, "date_create":"1245423559",
328
+ "date_update":"1356165011"}, {"id":"72157618789715578", "primary":"3563736117",
329
+ "secret":"482e7889db", "server":"3656", "farm":4, "photos":"13", "videos":0,
330
+ "title":{"_content":"Antwerp"}, "description":{"_content":"Shots I''ve taken
331
+ in Antwerp."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"47",
332
+ "count_comments":"0", "can_comment":1, "date_create":"1243286961", "date_update":"1356165009"},
333
+ {"id":"72157617813232989", "primary":"3515445170", "secret":"468e074632",
334
+ "server":"3356", "farm":4, "photos":"3", "videos":0, "title":{"_content":"Night
335
+ At The Docks"}, "description":{"_content":"These shots were taken at the docks
336
+ of Rotterdam. We were standing near the Maas."}, "needs_interstitial":0, "visibility_can_see_set":1,
337
+ "count_views":"31", "count_comments":"0", "can_comment":1, "date_create":"1241870453",
338
+ "date_update":"1356165009"}, {"id":"72157611834597247", "primary":"3149804427",
339
+ "secret":"0b95ff03f7", "server":"3101", "farm":4, "photos":"20", "videos":0,
340
+ "title":{"_content":"Red Bull Knock Out"}, "description":{"_content":"The
341
+ Red Bull Knockout took place in Scheveningen, the Netherlands on November
342
+ 16th. These shots were taken there."}, "needs_interstitial":0, "visibility_can_see_set":1,
343
+ "count_views":"103", "count_comments":"0", "can_comment":1, "date_create":"1230641381",
344
+ "date_update":"1356165009"}, {"id":"72157608768338052", "primary":"3070765188",
345
+ "secret":"28b8fa5d38", "server":"3201", "farm":4, "photos":"35", "videos":0,
346
+ "title":{"_content":"Zoom Experience ''08"}, "description":{"_content":"Zoom
347
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
348
+ in Utrecht by the Zoom.nl magazine."}, "needs_interstitial":0, "visibility_can_see_set":1,
349
+ "count_views":"383", "count_comments":"0", "can_comment":1, "date_create":"1226182293",
350
+ "date_update":"1356165010"}, {"id":"72157607994521912", "primary":"2938539715",
351
+ "secret":"683e0092c3", "server":"3025", "farm":4, "photos":"12", "videos":0,
352
+ "title":{"_content":"100% Tuning"}, "description":{"_content":"100% Tuning
353
+ is the largest indoor tuning event in Holland. This year was the 5th edition
354
+ of 100% Tuning in Ahoy Rotterdam."}, "needs_interstitial":0, "visibility_can_see_set":1,
355
+ "count_views":"1169", "count_comments":"0", "can_comment":1, "date_create":"1223927875",
356
+ "date_update":"1356165009"}, {"id":"72157607752895562", "primary":"2914332291",
357
+ "secret":"fd4400f0dd", "server":"3248", "farm":4, "photos":"17", "videos":0,
358
+ "title":{"_content":"Training Feijenoord"}, "description":{"_content":"These
359
+ photos were taken on a saturday at De Kuip in Rotterdam. The selection of
360
+ Feijenoord 1 was training there at the moment."}, "needs_interstitial":0,
361
+ "visibility_can_see_set":1, "count_views":"101", "count_comments":"0", "can_comment":1,
362
+ "date_create":"1223214961", "date_update":"1356165012"}, {"id":"72157607757878689",
363
+ "primary":"2914105201", "secret":"ae046eb2ea", "server":"3090", "farm":4,
364
+ "photos":"15", "videos":0, "title":{"_content":"Rotterdam Road Races"}, "description":{"_content":"The
365
+ Rotterdam Road Races is an event with several races like the Fortis 1\/2 Marathon
366
+ Rotterdam, AD 10 Km Loop and Rotterdam on Wheels."}, "needs_interstitial":0,
367
+ "visibility_can_see_set":1, "count_views":"41", "count_comments":"0", "can_comment":1,
368
+ "date_create":"1223208582", "date_update":"1356165012"}, {"id":"72157607755852863",
369
+ "primary":"2914800312", "secret":"eac896c089", "server":"3197", "farm":4,
370
+ "photos":"19", "videos":0, "title":{"_content":"Streetmasters ''08"}, "description":{"_content":"Streetmasters
371
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
372
+ breakdancers and streetdancers. This was the finale at Westblaak in Rotterdam."},
373
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"61", "count_comments":"0",
374
+ "can_comment":1, "date_create":"1223203353", "date_update":"1356165012"},
375
+ {"id":"72157607733513100", "primary":"2912489161", "secret":"d2fb34f716",
376
+ "server":"3105", "farm":4, "photos":"24", "videos":0, "title":{"_content":"Diergaarde
377
+ Blijdorp"}, "description":{"_content":"Rotterdam Zoo: Diergaarde Blijdorp"},
378
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"67", "count_comments":"0",
379
+ "can_comment":1, "date_create":"1223156815", "date_update":"1356165012"},
380
+ {"id":"72157607758936165", "primary":"2914184769", "secret":"26ca769e6a",
381
+ "server":"3100", "farm":4, "photos":"23", "videos":0, "title":{"_content":"I
382
+ (heart) Threadless"}, "description":{"_content":"Photos from our so-called
383
+ &quot;I (heart) Threadless&quot; photoshoot for our profile on the Threadless
384
+ website. It took place under the Brienenoordbrug in Rotterdam."}, "needs_interstitial":0,
385
+ "visibility_can_see_set":1, "count_views":"65", "count_comments":"0", "can_comment":1,
386
+ "date_create":"1223211099", "date_update":"1356165013"}, {"id":"72157604876037835",
387
+ "primary":"3514636763", "secret":"f13062d9e4", "server":"3317", "farm":4,
388
+ "photos":"16", "videos":0, "title":{"_content":"Me, Myself & I"}, "description":{"_content":"The
389
+ title of this set says it all. These are obviously selfportrets or images
390
+ of me made by other people."}, "needs_interstitial":0, "visibility_can_see_set":1,
391
+ "count_views":"330", "count_comments":"0", "can_comment":1, "date_create":"1209896547",
392
+ "date_update":"1356165012"}, {"id":"72157613432665353", "primary":"3831523902",
393
+ "secret":"9cf20046e1", "server":"3534", "farm":4, "photos":"33", "videos":0,
394
+ "title":{"_content":"Portraits"}, "description":{"_content":"Portraits of
395
+ people."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"64",
396
+ "count_comments":"0", "can_comment":1, "date_create":"1233996281", "date_update":"1356165012"},
397
+ {"id":"72157607956377672", "primary":"2933987351", "secret":"22ce24ddf9",
398
+ "server":"3179", "farm":4, "photos":"21", "videos":0, "title":{"_content":"Egypt"},
399
+ "description":{"_content":"In August 2008 I went to Sharm El-Sheikh, Egypt
400
+ with my brother. We''ve also visited Cairo while we were there. All of these
401
+ were taken with my Fujifilm FinePix s9600 (which I''ve sold)."}, "needs_interstitial":0,
402
+ "visibility_can_see_set":1, "count_views":"86", "count_comments":"0", "can_comment":1,
403
+ "date_create":"1223824830", "date_update":"1356165012"}, {"id":"72157607747813484",
404
+ "primary":"2914660920", "secret":"577a301104", "server":"3190", "farm":4,
405
+ "photos":"11", "videos":0, "title":{"_content":"Wereld havendagen"}, "description":{"_content":"The
406
+ world harbor day is a large event in Rotterdam. It is meant to show what takes
407
+ place in Europe''s biggest port."}, "needs_interstitial":0, "visibility_can_see_set":1,
408
+ "count_views":"21", "count_comments":"0", "can_comment":1, "date_create":"1223197948",
409
+ "date_update":"1356165012"}, {"id":"72157608065768431", "primary":"3260304504",
410
+ "secret":"b566f0c1fa", "server":"3403", "farm":4, "photos":"8", "videos":0,
411
+ "title":{"_content":"Gadgets & Gear"}, "description":{"_content":"This set
412
+ contains photos from my gadgets, gear and other shots that fit this set."},
413
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"315", "count_comments":"0",
414
+ "can_comment":1, "date_create":"1224100790", "date_update":"1356165012"},
415
+ {"id":"72157602136210676", "primary":"2463323643", "secret":"49c99715da",
416
+ "server":"2393", "farm":3, "photos":"9", "videos":0, "title":{"_content":"Cars"},
417
+ "description":{"_content":"The photos in this set are of my cars. The first
418
+ are from my Honda Civic 1.5 LSi ''93, which I''ve sold in the meanwhile. The
419
+ other photos are from my BMW 316i Compact from ''98, which I currently own."},
420
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"154", "count_comments":"0",
421
+ "can_comment":1, "date_create":"1190657188", "date_update":"1356165012"},
422
+ {"id":"72157609118757238", "primary":"2979327772", "secret":"1709ca8191",
423
+ "server":"3048", "farm":4, "photos":"101", "videos":0, "title":{"_content":"Bokeh"},
424
+ "description":{"_content":"Photographs that I''ve taken with out-of-focus
425
+ areas in it produced by a shallow depth of field."}, "needs_interstitial":0,
426
+ "visibility_can_see_set":1, "count_views":"79", "count_comments":"0", "can_comment":1,
427
+ "date_create":"1226764945", "date_update":"1356165012"}, {"id":"72157608164792364",
428
+ "primary":"2955114833", "secret":"7322751b77", "server":"3029", "farm":4,
429
+ "photos":"26", "videos":0, "title":{"_content":"Selective Colors"}, "description":{"_content":"This
430
+ set contains photos that are mainly black and white with a selective color."},
431
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"46", "count_comments":"0",
432
+ "can_comment":1, "date_create":"1224414579", "date_update":"1356165012"},
433
+ {"id":"72157608177901148", "primary":"3643167761", "secret":"32da16b737",
434
+ "server":"2465", "farm":3, "photos":"208", "videos":0, "title":{"_content":"Black
435
+ & White"}, "description":{"_content":"The title of this set is pretty self
436
+ explanatory, but just to make it more clear... it contains black and white
437
+ photographs."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"43",
438
+ "count_comments":"0", "can_comment":1, "date_create":"1224448207", "date_update":"1356165013"},
439
+ {"id":"72157609130124623", "primary":"3031746973", "secret":"179aa08c2e",
440
+ "server":"3294", "farm":4, "photos":"8", "videos":0, "title":{"_content":"Product
441
+ Photography"}, "description":{"_content":""}, "needs_interstitial":0, "visibility_can_see_set":1,
442
+ "count_views":"35", "count_comments":"0", "can_comment":1, "date_create":"1226763941",
443
+ "date_update":"1356165012"}, {"id":"72157600303479345", "primary":"2464410072",
444
+ "secret":"99a2e64e3e", "server":"2272", "farm":3, "photos":"7", "videos":0,
445
+ "title":{"_content":"Nature"}, "description":{"_content":"Flora, fauna and
446
+ landscapes."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"54",
447
+ "count_comments":"0", "can_comment":1, "date_create":"1180873266", "date_update":"1356165017"}]},
448
+ "stat":"ok"}'
449
+ http_version:
450
+ recorded_at: Sun, 13 Apr 2014 18:32:44 GMT
451
+ - request:
452
+ method: post
453
+ uri: https://api.flickr.com/services/rest/
454
+ body:
455
+ encoding: US-ASCII
456
+ string: photoset_id=72157632367381040&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
457
+ headers:
458
+ Accept-Encoding:
459
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
460
+ Accept:
461
+ - '*/*'
462
+ User-Agent:
463
+ - FlickRaw/0.9.8
464
+ Authorization:
465
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
466
+ oauth_nonce="FJJj8P8SHt477ckQnIL4BRAizlge8QIyu332kqYGgu0%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
467
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413964", oauth_token="<KUVA_ACCESS_TOKEN>",
468
+ oauth_version="1.0"
469
+ Content-Type:
470
+ - application/x-www-form-urlencoded
471
+ response:
472
+ status:
473
+ code: 200
474
+ message: OK
475
+ headers:
476
+ Date:
477
+ - Sun, 13 Apr 2014 18:32:44 GMT
478
+ P3p:
479
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
480
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
481
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
482
+ Cache-Control:
483
+ - private
484
+ X-Served-By:
485
+ - www262.flickr.bf1.yahoo.com
486
+ Vary:
487
+ - Accept-Encoding
488
+ Content-Length:
489
+ - '364'
490
+ Content-Type:
491
+ - application/json
492
+ Age:
493
+ - '3'
494
+ Via:
495
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
496
+ http/1.1 r08.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
497
+ Server:
498
+ - ATS
499
+ Connection:
500
+ - keep-alive
501
+ body:
502
+ encoding: UTF-8
503
+ string: '{"photoset":{"id":"72157632367381040", "owner":"8558751@N06", "username":"ktnl",
504
+ "primary":"8318972536", "secret":"eda82f692f", "server":"8499", "farm":9,
505
+ "photos":28, "count_views":"31", "count_comments":"0", "count_photos":"28",
506
+ "count_videos":0, "title":{"_content":"Paris"}, "description":{"_content":"These
507
+ shots were taken in Paris, France in December 2012. Most of them are taken
508
+ with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "can_comment":1,
509
+ "date_create":"1356715289", "date_update":"1356717162", "coverphoto_server":"0",
510
+ "coverphoto_farm":0}, "stat":"ok"}'
511
+ http_version:
512
+ recorded_at: Sun, 13 Apr 2014 18:32:45 GMT
513
+ - request:
514
+ method: post
515
+ uri: https://api.flickr.com/services/rest/
516
+ body:
517
+ encoding: US-ASCII
518
+ string: photoset_id=72157632303248759&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
519
+ headers:
520
+ Accept-Encoding:
521
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
522
+ Accept:
523
+ - '*/*'
524
+ User-Agent:
525
+ - FlickRaw/0.9.8
526
+ Authorization:
527
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
528
+ oauth_nonce="3bjrLh2qM1JaArak9JPdKr8aa3mAVC7zlRptvvQNn1o%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
529
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413965", oauth_token="<KUVA_ACCESS_TOKEN>",
530
+ oauth_version="1.0"
531
+ Content-Type:
532
+ - application/x-www-form-urlencoded
533
+ response:
534
+ status:
535
+ code: 200
536
+ message: OK
537
+ headers:
538
+ Date:
539
+ - Sun, 13 Apr 2014 18:32:45 GMT
540
+ P3p:
541
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
542
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
543
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
544
+ Cache-Control:
545
+ - private
546
+ X-Served-By:
547
+ - www25.flickr.bf1.yahoo.com
548
+ Vary:
549
+ - Accept-Encoding
550
+ Content-Length:
551
+ - '354'
552
+ Content-Type:
553
+ - application/json
554
+ Age:
555
+ - '0'
556
+ Via:
557
+ - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
558
+ http/1.1 r14.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
559
+ Server:
560
+ - ATS
561
+ Connection:
562
+ - keep-alive
563
+ body:
564
+ encoding: UTF-8
565
+ string: '{"photoset":{"id":"72157632303248759", "owner":"8558751@N06", "username":"ktnl",
566
+ "primary":"8294626229", "secret":"7b8aaeab2b", "server":"8081", "farm":9,
567
+ "photos":69, "count_views":"21", "count_comments":"0", "count_photos":"69",
568
+ "count_videos":0, "title":{"_content":"Bali"}, "description":{"_content":"These
569
+ shots were taken on Bali in May 2012. Most of them are taken with my Nikon
570
+ D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "can_comment":1, "date_create":"1356131625",
571
+ "date_update":"1356189559", "coverphoto_server":"0", "coverphoto_farm":0},
572
+ "stat":"ok"}'
573
+ http_version:
574
+ recorded_at: Sun, 13 Apr 2014 18:32:45 GMT
575
+ - request:
576
+ method: post
577
+ uri: https://api.flickr.com/services/rest/
578
+ body:
579
+ encoding: US-ASCII
580
+ string: photoset_id=72157629017578067&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
581
+ headers:
582
+ Accept-Encoding:
583
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
584
+ Accept:
585
+ - '*/*'
586
+ User-Agent:
587
+ - FlickRaw/0.9.8
588
+ Authorization:
589
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
590
+ oauth_nonce="EkBV1oZY%2BvOAKRXajWNZuDw2qtkpAZcxlWud6ifWOR0%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
591
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413965", oauth_token="<KUVA_ACCESS_TOKEN>",
592
+ oauth_version="1.0"
593
+ Content-Type:
594
+ - application/x-www-form-urlencoded
595
+ response:
596
+ status:
597
+ code: 200
598
+ message: OK
599
+ headers:
600
+ Date:
601
+ - Sun, 13 Apr 2014 18:32:45 GMT
602
+ P3p:
603
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
604
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
605
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
606
+ Cache-Control:
607
+ - private
608
+ X-Served-By:
609
+ - www146.flickr.bf1.yahoo.com
610
+ Vary:
611
+ - Accept-Encoding
612
+ Content-Length:
613
+ - '405'
614
+ Content-Type:
615
+ - application/json
616
+ Age:
617
+ - '3'
618
+ Via:
619
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
620
+ http/1.1 r24.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
621
+ Server:
622
+ - ATS
623
+ Connection:
624
+ - keep-alive
625
+ body:
626
+ encoding: UTF-8
627
+ string: '{"photoset":{"id":"72157629017578067", "owner":"8558751@N06", "username":"ktnl",
628
+ "primary":"6757041485", "secret":"643ba72439", "server":"7163", "farm":8,
629
+ "photos":69, "count_views":"73", "count_comments":"4", "count_photos":"69",
630
+ "count_videos":0, "title":{"_content":"Aruba"}, "description":{"_content":"These
631
+ shots were taken on Aruba (One Happy Island) in March 2011. Most of them are
632
+ taken with my Nikon D80 and Tokina 12-24mm f\/4.\n\nObviously it''s Aruba
633
+ from a different point of view."}, "can_comment":1, "date_create":"1327442512",
634
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
635
+ "stat":"ok"}'
636
+ http_version:
637
+ recorded_at: Sun, 13 Apr 2014 18:32:46 GMT
638
+ - request:
639
+ method: post
640
+ uri: https://api.flickr.com/services/rest/
641
+ body:
642
+ encoding: US-ASCII
643
+ string: photoset_id=72157628378160739&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
644
+ headers:
645
+ Accept-Encoding:
646
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
647
+ Accept:
648
+ - '*/*'
649
+ User-Agent:
650
+ - FlickRaw/0.9.8
651
+ Authorization:
652
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
653
+ oauth_nonce="9667q62g5ci5qOIjYHalOuDoXXaLrI3e1JaM0E1FOAk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
654
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413966", oauth_token="<KUVA_ACCESS_TOKEN>",
655
+ oauth_version="1.0"
656
+ Content-Type:
657
+ - application/x-www-form-urlencoded
658
+ response:
659
+ status:
660
+ code: 200
661
+ message: OK
662
+ headers:
663
+ Date:
664
+ - Sun, 13 Apr 2014 18:32:46 GMT
665
+ P3p:
666
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
667
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
668
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
669
+ Cache-Control:
670
+ - private
671
+ X-Served-By:
672
+ - www18.flickr.bf1.yahoo.com
673
+ Vary:
674
+ - Accept-Encoding
675
+ Content-Length:
676
+ - '344'
677
+ Content-Type:
678
+ - application/json
679
+ Age:
680
+ - '0'
681
+ Via:
682
+ - http/1.1 fts120.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
683
+ http/1.1 r21.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
684
+ Server:
685
+ - ATS
686
+ Connection:
687
+ - keep-alive
688
+ body:
689
+ encoding: UTF-8
690
+ string: '{"photoset":{"id":"72157628378160739", "owner":"8558751@N06", "username":"ktnl",
691
+ "primary":"6495153913", "secret":"1ba1b324ef", "server":"7145", "farm":8,
692
+ "photos":51, "count_views":"89", "count_comments":"0", "count_photos":"51",
693
+ "count_videos":0, "title":{"_content":"Carnaval di Aruba ''11"}, "description":{"_content":"These
694
+ shots were taken in and around Oranjestad, Aruba during the Carnival in March
695
+ 2011."}, "can_comment":1, "date_create":"1323640679", "date_update":"1356165010",
696
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
697
+ http_version:
698
+ recorded_at: Sun, 13 Apr 2014 18:32:46 GMT
699
+ - request:
700
+ method: post
701
+ uri: https://api.flickr.com/services/rest/
702
+ body:
703
+ encoding: US-ASCII
704
+ string: photoset_id=72157625433863013&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
705
+ headers:
706
+ Accept-Encoding:
707
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
708
+ Accept:
709
+ - '*/*'
710
+ User-Agent:
711
+ - FlickRaw/0.9.8
712
+ Authorization:
713
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
714
+ oauth_nonce="2Nx2leWbUwm5K%2FzJzbpKrwfFggtsT%2B%2BOfnJnXQMpYiQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
715
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413966", oauth_token="<KUVA_ACCESS_TOKEN>",
716
+ oauth_version="1.0"
717
+ Content-Type:
718
+ - application/x-www-form-urlencoded
719
+ response:
720
+ status:
721
+ code: 200
722
+ message: OK
723
+ headers:
724
+ Date:
725
+ - Sun, 13 Apr 2014 18:32:46 GMT
726
+ P3p:
727
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
728
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
729
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
730
+ Cache-Control:
731
+ - private
732
+ X-Served-By:
733
+ - www100.flickr.bf1.yahoo.com
734
+ Vary:
735
+ - Accept-Encoding
736
+ Content-Length:
737
+ - '356'
738
+ Content-Type:
739
+ - application/json
740
+ Age:
741
+ - '0'
742
+ Via:
743
+ - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
744
+ http/1.1 r12.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
745
+ Server:
746
+ - ATS
747
+ Connection:
748
+ - keep-alive
749
+ body:
750
+ encoding: UTF-8
751
+ string: '{"photoset":{"id":"72157625433863013", "owner":"8558751@N06", "username":"ktnl",
752
+ "primary":"5245419190", "secret":"54cdd111fd", "server":"5282", "farm":6,
753
+ "photos":10, "count_views":"123", "count_comments":"0", "count_photos":"10",
754
+ "count_videos":0, "title":{"_content":"Zoom Experience ''10"}, "description":{"_content":"These
755
+ shots were taken at the Zoom Experience 2010 in the Jaarbeurs, Utrecht. They
756
+ all feature the model Suraya."}, "can_comment":1, "date_create":"1291854812",
757
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
758
+ "stat":"ok"}'
759
+ http_version:
760
+ recorded_at: Sun, 13 Apr 2014 18:32:46 GMT
761
+ - request:
762
+ method: post
763
+ uri: https://api.flickr.com/services/rest/
764
+ body:
765
+ encoding: US-ASCII
766
+ string: photoset_id=72157625523500610&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
767
+ headers:
768
+ Accept-Encoding:
769
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
770
+ Accept:
771
+ - '*/*'
772
+ User-Agent:
773
+ - FlickRaw/0.9.8
774
+ Authorization:
775
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
776
+ oauth_nonce="8fmF%2B1GqobiEChkhau5tH1c7q97gHy0Ku29N2chqCFQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
777
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413966", oauth_token="<KUVA_ACCESS_TOKEN>",
778
+ oauth_version="1.0"
779
+ Content-Type:
780
+ - application/x-www-form-urlencoded
781
+ response:
782
+ status:
783
+ code: 200
784
+ message: OK
785
+ headers:
786
+ Date:
787
+ - Sun, 13 Apr 2014 18:32:47 GMT
788
+ P3p:
789
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
790
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
791
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
792
+ Cache-Control:
793
+ - private
794
+ X-Served-By:
795
+ - www1.flickr.bf1.yahoo.com
796
+ Vary:
797
+ - Accept-Encoding
798
+ Content-Length:
799
+ - '382'
800
+ Content-Type:
801
+ - application/json
802
+ Age:
803
+ - '0'
804
+ Via:
805
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
806
+ http/1.1 r13.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
807
+ Server:
808
+ - ATS
809
+ Connection:
810
+ - keep-alive
811
+ body:
812
+ encoding: UTF-8
813
+ string: '{"photoset":{"id":"72157625523500610", "owner":"8558751@N06", "username":"ktnl",
814
+ "primary":"5230378378", "secret":"fecddda258", "server":"5242", "farm":6,
815
+ "photos":30, "count_views":"47", "count_comments":"0", "count_photos":"30",
816
+ "count_videos":0, "title":{"_content":"The Hague"}, "description":{"_content":"These
817
+ shots were taken on a sunny afternoon in the centre of The Hague, The Netherlands.
818
+ Most of them have been taken in or around the Binnenhof, where the Dutch parliament
819
+ resides."}, "can_comment":1, "date_create":"1291422677", "date_update":"1356165010",
820
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
821
+ http_version:
822
+ recorded_at: Sun, 13 Apr 2014 18:32:47 GMT
823
+ - request:
824
+ method: post
825
+ uri: https://api.flickr.com/services/rest/
826
+ body:
827
+ encoding: US-ASCII
828
+ string: photoset_id=72157624624572356&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
829
+ headers:
830
+ Accept-Encoding:
831
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
832
+ Accept:
833
+ - '*/*'
834
+ User-Agent:
835
+ - FlickRaw/0.9.8
836
+ Authorization:
837
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
838
+ oauth_nonce="yS7s9ylFyZxFFs1HUOW6435Gju6bqBz3QCxMPZ%2FwjHk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
839
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413967", oauth_token="<KUVA_ACCESS_TOKEN>",
840
+ oauth_version="1.0"
841
+ Content-Type:
842
+ - application/x-www-form-urlencoded
843
+ response:
844
+ status:
845
+ code: 200
846
+ message: OK
847
+ headers:
848
+ Date:
849
+ - Sun, 13 Apr 2014 18:32:47 GMT
850
+ P3p:
851
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
852
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
853
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
854
+ Cache-Control:
855
+ - private
856
+ X-Served-By:
857
+ - www277.flickr.bf1.yahoo.com
858
+ Vary:
859
+ - Accept-Encoding
860
+ Content-Length:
861
+ - '392'
862
+ Content-Type:
863
+ - application/json
864
+ Age:
865
+ - '2'
866
+ Via:
867
+ - http/1.1 fts120.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
868
+ http/1.1 r19.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
869
+ Server:
870
+ - ATS
871
+ Connection:
872
+ - keep-alive
873
+ body:
874
+ encoding: UTF-8
875
+ string: '{"photoset":{"id":"72157624624572356", "owner":"8558751@N06", "username":"ktnl",
876
+ "primary":"4847033367", "secret":"f455849b72", "server":"4146", "farm":5,
877
+ "photos":57, "count_views":"266", "count_comments":"0", "count_photos":"57",
878
+ "count_videos":0, "title":{"_content":"Zomer Carnaval ''10"}, "description":{"_content":"These
879
+ shots were taken at the Ortel Zomer Carnaval 2010 in Rotterdam. Most of them
880
+ were taken with my Nikon 50 mm f\/1.8D at Leuvehaven and some of them were
881
+ taken with my Nikon 70-300mm f4.5-5.6."}, "can_comment":1, "date_create":"1280613448",
882
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
883
+ "stat":"ok"}'
884
+ http_version:
885
+ recorded_at: Sun, 13 Apr 2014 18:32:48 GMT
886
+ - request:
887
+ method: post
888
+ uri: https://api.flickr.com/services/rest/
889
+ body:
890
+ encoding: US-ASCII
891
+ string: photoset_id=72157623902001333&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
892
+ headers:
893
+ Accept-Encoding:
894
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
895
+ Accept:
896
+ - '*/*'
897
+ User-Agent:
898
+ - FlickRaw/0.9.8
899
+ Authorization:
900
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
901
+ oauth_nonce="eQOBHLUuKJcptHBy5Kjk787CwbRUzd9mgccD4S477VA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
902
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413968", oauth_token="<KUVA_ACCESS_TOKEN>",
903
+ oauth_version="1.0"
904
+ Content-Type:
905
+ - application/x-www-form-urlencoded
906
+ response:
907
+ status:
908
+ code: 200
909
+ message: OK
910
+ headers:
911
+ Date:
912
+ - Sun, 13 Apr 2014 18:32:48 GMT
913
+ P3p:
914
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
915
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
916
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
917
+ Cache-Control:
918
+ - private
919
+ X-Served-By:
920
+ - www311.flickr.bf1.yahoo.com
921
+ Vary:
922
+ - Accept-Encoding
923
+ Content-Length:
924
+ - '401'
925
+ Content-Type:
926
+ - application/json
927
+ Age:
928
+ - '0'
929
+ Via:
930
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
931
+ http/1.1 r23.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
932
+ Server:
933
+ - ATS
934
+ Connection:
935
+ - keep-alive
936
+ body:
937
+ encoding: UTF-8
938
+ string: '{"photoset":{"id":"72157623902001333", "owner":"8558751@N06", "username":"ktnl",
939
+ "primary":"4593271974", "secret":"d2482de61a", "server":"3544", "farm":4,
940
+ "photos":47, "count_views":"71", "count_comments":"0", "count_photos":"47",
941
+ "count_videos":0, "title":{"_content":"5 Mei Festival"}, "description":{"_content":"A
942
+ festival in The Hague on May 5th, which is Liberation Day in The Netherlands.
943
+ \n\nIn this set you''ll be able to view the following artists: Winne, Jurk
944
+ and Mischu Laikah."}, "can_comment":1, "date_create":"1273437402", "date_update":"1356165010",
945
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
946
+ http_version:
947
+ recorded_at: Sun, 13 Apr 2014 18:32:48 GMT
948
+ - request:
949
+ method: post
950
+ uri: https://api.flickr.com/services/rest/
951
+ body:
952
+ encoding: US-ASCII
953
+ string: photoset_id=72157623700320221&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
954
+ headers:
955
+ Accept-Encoding:
956
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
957
+ Accept:
958
+ - '*/*'
959
+ User-Agent:
960
+ - FlickRaw/0.9.8
961
+ Authorization:
962
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
963
+ oauth_nonce="2A1dTKYFP6YMUXEu3zazG7qLF11BxlE9xNLP0fz2JCU%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
964
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413968", oauth_token="<KUVA_ACCESS_TOKEN>",
965
+ oauth_version="1.0"
966
+ Content-Type:
967
+ - application/x-www-form-urlencoded
968
+ response:
969
+ status:
970
+ code: 200
971
+ message: OK
972
+ headers:
973
+ Date:
974
+ - Sun, 13 Apr 2014 18:32:48 GMT
975
+ P3p:
976
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
977
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
978
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
979
+ Cache-Control:
980
+ - private
981
+ X-Served-By:
982
+ - www53.flickr.bf1.yahoo.com
983
+ Vary:
984
+ - Accept-Encoding
985
+ Content-Length:
986
+ - '322'
987
+ Content-Type:
988
+ - application/json
989
+ Age:
990
+ - '0'
991
+ Via:
992
+ - http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
993
+ http/1.1 r24.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
994
+ Server:
995
+ - ATS
996
+ Connection:
997
+ - keep-alive
998
+ body:
999
+ encoding: UTF-8
1000
+ string: '{"photoset":{"id":"72157623700320221", "owner":"8558751@N06", "username":"ktnl",
1001
+ "primary":"4507629959", "secret":"42bce98099", "server":"2726", "farm":3,
1002
+ "photos":23, "count_views":"89", "count_comments":"0", "count_photos":"23",
1003
+ "count_videos":0, "title":{"_content":"Val Thorens"}, "description":{"_content":"Most
1004
+ of these shots were taken in Val Thorens, France with a Nikon D80."}, "can_comment":1,
1005
+ "date_create":"1270915823", "date_update":"1356165010", "coverphoto_server":"0",
1006
+ "coverphoto_farm":0}, "stat":"ok"}'
1007
+ http_version:
1008
+ recorded_at: Sun, 13 Apr 2014 18:32:48 GMT
1009
+ - request:
1010
+ method: post
1011
+ uri: https://api.flickr.com/services/rest/
1012
+ body:
1013
+ encoding: US-ASCII
1014
+ string: photoset_id=72157622678558767&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1015
+ headers:
1016
+ Accept-Encoding:
1017
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1018
+ Accept:
1019
+ - '*/*'
1020
+ User-Agent:
1021
+ - FlickRaw/0.9.8
1022
+ Authorization:
1023
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1024
+ oauth_nonce="D87wdcBteA2g8nWrb1Q5olpjSGmHzR2X8YIRCkDQEvo%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1025
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413968", oauth_token="<KUVA_ACCESS_TOKEN>",
1026
+ oauth_version="1.0"
1027
+ Content-Type:
1028
+ - application/x-www-form-urlencoded
1029
+ response:
1030
+ status:
1031
+ code: 200
1032
+ message: OK
1033
+ headers:
1034
+ Date:
1035
+ - Sun, 13 Apr 2014 18:32:48 GMT
1036
+ P3p:
1037
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1038
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1039
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1040
+ Cache-Control:
1041
+ - private
1042
+ X-Served-By:
1043
+ - www226.flickr.bf1.yahoo.com
1044
+ Vary:
1045
+ - Accept-Encoding
1046
+ Content-Length:
1047
+ - '353'
1048
+ Content-Type:
1049
+ - application/json
1050
+ Age:
1051
+ - '3'
1052
+ Via:
1053
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1054
+ http/1.1 r17.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1055
+ Server:
1056
+ - ATS
1057
+ Connection:
1058
+ - keep-alive
1059
+ body:
1060
+ encoding: UTF-8
1061
+ string: '{"photoset":{"id":"72157622678558767", "owner":"8558751@N06", "username":"ktnl",
1062
+ "primary":"4103218587", "secret":"4c8bdd07b5", "server":"2631", "farm":3,
1063
+ "photos":40, "count_views":"153", "count_comments":"0", "count_photos":"40",
1064
+ "count_videos":0, "title":{"_content":"Zoom Experience ''09"}, "description":{"_content":"Zoom
1065
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
1066
+ in Utrecht by the Zoom.nl magazine."}, "can_comment":1, "date_create":"1258229906",
1067
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
1068
+ "stat":"ok"}'
1069
+ http_version:
1070
+ recorded_at: Sun, 13 Apr 2014 18:32:49 GMT
1071
+ - request:
1072
+ method: post
1073
+ uri: https://api.flickr.com/services/rest/
1074
+ body:
1075
+ encoding: US-ASCII
1076
+ string: photoset_id=72157622216400117&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1077
+ headers:
1078
+ Accept-Encoding:
1079
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1080
+ Accept:
1081
+ - '*/*'
1082
+ User-Agent:
1083
+ - FlickRaw/0.9.8
1084
+ Authorization:
1085
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1086
+ oauth_nonce="wNyZWfvWBMNuLBTZ2PuBOOFMrMwm3Kefz%2BuVvrpqVaU%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1087
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413969", oauth_token="<KUVA_ACCESS_TOKEN>",
1088
+ oauth_version="1.0"
1089
+ Content-Type:
1090
+ - application/x-www-form-urlencoded
1091
+ response:
1092
+ status:
1093
+ code: 200
1094
+ message: OK
1095
+ headers:
1096
+ Date:
1097
+ - Sun, 13 Apr 2014 18:32:49 GMT
1098
+ P3p:
1099
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1100
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1101
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1102
+ Cache-Control:
1103
+ - private
1104
+ X-Served-By:
1105
+ - www14.flickr.bf1.yahoo.com
1106
+ Vary:
1107
+ - Accept-Encoding
1108
+ Content-Length:
1109
+ - '354'
1110
+ Content-Type:
1111
+ - application/json
1112
+ Age:
1113
+ - '3'
1114
+ Via:
1115
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1116
+ http/1.1 r03.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1117
+ Server:
1118
+ - ATS
1119
+ Connection:
1120
+ - keep-alive
1121
+ body:
1122
+ encoding: UTF-8
1123
+ string: '{"photoset":{"id":"72157622216400117", "owner":"8558751@N06", "username":"ktnl",
1124
+ "primary":"3910073517", "secret":"2ee8ba3d74", "server":"2631", "farm":3,
1125
+ "photos":152, "count_views":"108", "count_comments":"0", "count_photos":"152",
1126
+ "count_videos":0, "title":{"_content":"Rome"}, "description":{"_content":"Most
1127
+ of these shots were taken in Rome, Italy with my Nikkor 50 mm f\/1.8. The
1128
+ others were taken with the Nikkor 55-200 mm f\/4.0-5.6."}, "can_comment":1,
1129
+ "date_create":"1252704238", "date_update":"1356165011", "coverphoto_server":"0",
1130
+ "coverphoto_farm":0}, "stat":"ok"}'
1131
+ http_version:
1132
+ recorded_at: Sun, 13 Apr 2014 18:32:50 GMT
1133
+ - request:
1134
+ method: post
1135
+ uri: https://api.flickr.com/services/rest/
1136
+ body:
1137
+ encoding: US-ASCII
1138
+ string: photoset_id=72157622251601466&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1139
+ headers:
1140
+ Accept-Encoding:
1141
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1142
+ Accept:
1143
+ - '*/*'
1144
+ User-Agent:
1145
+ - FlickRaw/0.9.8
1146
+ Authorization:
1147
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1148
+ oauth_nonce="%2FvXd%2Fr%2F0nC4tH8aI81Gt8Oz10SBy1aiKuRkYE4aAVNc%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1149
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413970", oauth_token="<KUVA_ACCESS_TOKEN>",
1150
+ oauth_version="1.0"
1151
+ Content-Type:
1152
+ - application/x-www-form-urlencoded
1153
+ response:
1154
+ status:
1155
+ code: 200
1156
+ message: OK
1157
+ headers:
1158
+ Date:
1159
+ - Sun, 13 Apr 2014 18:32:50 GMT
1160
+ P3p:
1161
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1162
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1163
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1164
+ Cache-Control:
1165
+ - private
1166
+ X-Served-By:
1167
+ - www248.flickr.bf1.yahoo.com
1168
+ Vary:
1169
+ - Accept-Encoding
1170
+ Content-Length:
1171
+ - '366'
1172
+ Content-Type:
1173
+ - application/json
1174
+ Age:
1175
+ - '3'
1176
+ Via:
1177
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1178
+ http/1.1 r18.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1179
+ Server:
1180
+ - ATS
1181
+ Connection:
1182
+ - keep-alive
1183
+ body:
1184
+ encoding: UTF-8
1185
+ string: '{"photoset":{"id":"72157622251601466", "owner":"8558751@N06", "username":"ktnl",
1186
+ "primary":"3889860224", "secret":"9333bbc160", "server":"2435", "farm":3,
1187
+ "photos":81, "count_views":"234", "count_comments":"0", "count_photos":"81",
1188
+ "count_videos":0, "title":{"_content":"Rome (UWA)"}, "description":{"_content":"These
1189
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
1190
+ Angle lens, in Rome, Italy."}, "can_comment":1, "date_create":"1252152755",
1191
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1192
+ "stat":"ok"}'
1193
+ http_version:
1194
+ recorded_at: Sun, 13 Apr 2014 18:32:51 GMT
1195
+ - request:
1196
+ method: post
1197
+ uri: https://api.flickr.com/services/rest/
1198
+ body:
1199
+ encoding: US-ASCII
1200
+ string: photoset_id=72157622042947321&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1201
+ headers:
1202
+ Accept-Encoding:
1203
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1204
+ Accept:
1205
+ - '*/*'
1206
+ User-Agent:
1207
+ - FlickRaw/0.9.8
1208
+ Authorization:
1209
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1210
+ oauth_nonce="YMKf9NzPYOZoOStbqrTQgd1BXZlujWE8vTV2GJEFW0o%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1211
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413971", oauth_token="<KUVA_ACCESS_TOKEN>",
1212
+ oauth_version="1.0"
1213
+ Content-Type:
1214
+ - application/x-www-form-urlencoded
1215
+ response:
1216
+ status:
1217
+ code: 200
1218
+ message: OK
1219
+ headers:
1220
+ Date:
1221
+ - Sun, 13 Apr 2014 18:32:51 GMT
1222
+ P3p:
1223
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1224
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1225
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1226
+ Cache-Control:
1227
+ - private
1228
+ X-Served-By:
1229
+ - www244.flickr.bf1.yahoo.com
1230
+ Vary:
1231
+ - Accept-Encoding
1232
+ Content-Length:
1233
+ - '323'
1234
+ Content-Type:
1235
+ - application/json
1236
+ Age:
1237
+ - '3'
1238
+ Via:
1239
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1240
+ http/1.1 r02.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1241
+ Server:
1242
+ - ATS
1243
+ Connection:
1244
+ - keep-alive
1245
+ body:
1246
+ encoding: UTF-8
1247
+ string: '{"photoset":{"id":"72157622042947321", "owner":"8558751@N06", "username":"ktnl",
1248
+ "primary":"3865054146", "secret":"e5d907bd9a", "server":"2637", "farm":3,
1249
+ "photos":27, "count_views":"93", "count_comments":"0", "count_photos":"27",
1250
+ "count_videos":0, "title":{"_content":"Madurodam At Night"}, "description":{"_content":"These
1251
+ shots were taken during the evening at Madurodam, Scheveningen. "}, "can_comment":1,
1252
+ "date_create":"1251468756", "date_update":"1356165010", "coverphoto_server":"0",
1253
+ "coverphoto_farm":0}, "stat":"ok"}'
1254
+ http_version:
1255
+ recorded_at: Sun, 13 Apr 2014 18:32:52 GMT
1256
+ - request:
1257
+ method: post
1258
+ uri: https://api.flickr.com/services/rest/
1259
+ body:
1260
+ encoding: US-ASCII
1261
+ string: photoset_id=72157622067739660&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1262
+ headers:
1263
+ Accept-Encoding:
1264
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1265
+ Accept:
1266
+ - '*/*'
1267
+ User-Agent:
1268
+ - FlickRaw/0.9.8
1269
+ Authorization:
1270
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1271
+ oauth_nonce="0if6DouI4pt1kAoW4kLnmo3ElCP3O4BxaARin19Hvd0%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1272
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413972", oauth_token="<KUVA_ACCESS_TOKEN>",
1273
+ oauth_version="1.0"
1274
+ Content-Type:
1275
+ - application/x-www-form-urlencoded
1276
+ response:
1277
+ status:
1278
+ code: 200
1279
+ message: OK
1280
+ headers:
1281
+ Date:
1282
+ - Sun, 13 Apr 2014 18:32:52 GMT
1283
+ P3p:
1284
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1285
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1286
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1287
+ Cache-Control:
1288
+ - private
1289
+ X-Served-By:
1290
+ - www319.flickr.bf1.yahoo.com
1291
+ Vary:
1292
+ - Accept-Encoding
1293
+ Content-Length:
1294
+ - '397'
1295
+ Content-Type:
1296
+ - application/json
1297
+ Age:
1298
+ - '2'
1299
+ Via:
1300
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1301
+ http/1.1 r18.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1302
+ Server:
1303
+ - ATS
1304
+ Connection:
1305
+ - keep-alive
1306
+ body:
1307
+ encoding: UTF-8
1308
+ string: '{"photoset":{"id":"72157622067739660", "owner":"8558751@N06", "username":"ktnl",
1309
+ "primary":"3843992302", "secret":"e0fc5eb971", "server":"2608", "farm":3,
1310
+ "photos":76, "count_views":"137", "count_comments":"0", "count_photos":"76",
1311
+ "count_videos":0, "title":{"_content":"Streetmasters ''09"}, "description":{"_content":"Streetmasters
1312
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
1313
+ breakdancers, streetdancers and streetsoccer players. As of the 2009 edition
1314
+ there also is a freerunners dicipline."}, "can_comment":1, "date_create":"1250543322",
1315
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1316
+ "stat":"ok"}'
1317
+ http_version:
1318
+ recorded_at: Sun, 13 Apr 2014 18:32:53 GMT
1319
+ - request:
1320
+ method: post
1321
+ uri: https://api.flickr.com/services/rest/
1322
+ body:
1323
+ encoding: US-ASCII
1324
+ string: photoset_id=72157621986269708&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1325
+ headers:
1326
+ Accept-Encoding:
1327
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1328
+ Accept:
1329
+ - '*/*'
1330
+ User-Agent:
1331
+ - FlickRaw/0.9.8
1332
+ Authorization:
1333
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1334
+ oauth_nonce="%2BOkiXnC7X3N%2Fr8LLDg3w9baDeMnyZX3KF2mMuSI83xQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1335
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413973", oauth_token="<KUVA_ACCESS_TOKEN>",
1336
+ oauth_version="1.0"
1337
+ Content-Type:
1338
+ - application/x-www-form-urlencoded
1339
+ response:
1340
+ status:
1341
+ code: 200
1342
+ message: OK
1343
+ headers:
1344
+ Date:
1345
+ - Sun, 13 Apr 2014 18:32:53 GMT
1346
+ P3p:
1347
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1348
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1349
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1350
+ Cache-Control:
1351
+ - private
1352
+ X-Served-By:
1353
+ - www234.flickr.bf1.yahoo.com
1354
+ Vary:
1355
+ - Accept-Encoding
1356
+ Content-Length:
1357
+ - '361'
1358
+ Content-Type:
1359
+ - application/json
1360
+ Age:
1361
+ - '0'
1362
+ Via:
1363
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1364
+ http/1.1 r07.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1365
+ Server:
1366
+ - ATS
1367
+ Connection:
1368
+ - keep-alive
1369
+ body:
1370
+ encoding: UTF-8
1371
+ string: '{"photoset":{"id":"72157621986269708", "owner":"8558751@N06", "username":"ktnl",
1372
+ "primary":"3802687475", "secret":"7007c87d22", "server":"3493", "farm":4,
1373
+ "photos":21, "count_views":"97", "count_comments":"0", "count_photos":"21",
1374
+ "count_videos":0, "title":{"_content":"Fit For Free Dance Parade"}, "description":{"_content":"The
1375
+ Fit For Free Dance Parade is a parade of trucks with DJ''s and dancers on
1376
+ them, which goes straight through Rotterdam."}, "can_comment":1, "date_create":"1249803502",
1377
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1378
+ "stat":"ok"}'
1379
+ http_version:
1380
+ recorded_at: Sun, 13 Apr 2014 18:32:53 GMT
1381
+ - request:
1382
+ method: post
1383
+ uri: https://api.flickr.com/services/rest/
1384
+ body:
1385
+ encoding: US-ASCII
1386
+ string: photoset_id=72157621709918913&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1387
+ headers:
1388
+ Accept-Encoding:
1389
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1390
+ Accept:
1391
+ - '*/*'
1392
+ User-Agent:
1393
+ - FlickRaw/0.9.8
1394
+ Authorization:
1395
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1396
+ oauth_nonce="JL6GIdNOYuqvt8hwvoC1EqAJ%2FGmykiLWOzBo1RMirH4%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1397
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413973", oauth_token="<KUVA_ACCESS_TOKEN>",
1398
+ oauth_version="1.0"
1399
+ Content-Type:
1400
+ - application/x-www-form-urlencoded
1401
+ response:
1402
+ status:
1403
+ code: 200
1404
+ message: OK
1405
+ headers:
1406
+ Date:
1407
+ - Sun, 13 Apr 2014 18:32:53 GMT
1408
+ P3p:
1409
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1410
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1411
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1412
+ Cache-Control:
1413
+ - private
1414
+ X-Served-By:
1415
+ - www23.flickr.bf1.yahoo.com
1416
+ Vary:
1417
+ - Accept-Encoding
1418
+ Content-Length:
1419
+ - '366'
1420
+ Content-Type:
1421
+ - application/json
1422
+ Age:
1423
+ - '0'
1424
+ Via:
1425
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1426
+ http/1.1 r08.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1427
+ Server:
1428
+ - ATS
1429
+ Connection:
1430
+ - keep-alive
1431
+ body:
1432
+ encoding: UTF-8
1433
+ string: '{"photoset":{"id":"72157621709918913", "owner":"8558751@N06", "username":"ktnl",
1434
+ "primary":"3757528316", "secret":"a20bd0c139", "server":"2610", "farm":3,
1435
+ "photos":58, "count_views":"290", "count_comments":"0", "count_photos":"58",
1436
+ "count_videos":0, "title":{"_content":"Zomer Carnaval ''09"}, "description":{"_content":"These
1437
+ shots were taken at the Ortel Zomer Carnaval 2009 in Rotterdam. They were
1438
+ al taken with my Nikon 50 mm f\/1.8D at the Coolsingel."}, "can_comment":1,
1439
+ "date_create":"1248592969", "date_update":"1356165010", "coverphoto_server":"0",
1440
+ "coverphoto_farm":0}, "stat":"ok"}'
1441
+ http_version:
1442
+ recorded_at: Sun, 13 Apr 2014 18:32:53 GMT
1443
+ - request:
1444
+ method: post
1445
+ uri: https://api.flickr.com/services/rest/
1446
+ body:
1447
+ encoding: US-ASCII
1448
+ string: photoset_id=72157621226409953&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1449
+ headers:
1450
+ Accept-Encoding:
1451
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1452
+ Accept:
1453
+ - '*/*'
1454
+ User-Agent:
1455
+ - FlickRaw/0.9.8
1456
+ Authorization:
1457
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1458
+ oauth_nonce="p8TNkZnC1vk4iWy87C%2F%2BREgarQTG%2F0ulb1rgD8yhJkw%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1459
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413973", oauth_token="<KUVA_ACCESS_TOKEN>",
1460
+ oauth_version="1.0"
1461
+ Content-Type:
1462
+ - application/x-www-form-urlencoded
1463
+ response:
1464
+ status:
1465
+ code: 200
1466
+ message: OK
1467
+ headers:
1468
+ Date:
1469
+ - Sun, 13 Apr 2014 18:32:54 GMT
1470
+ P3p:
1471
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1472
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1473
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1474
+ Cache-Control:
1475
+ - private
1476
+ X-Served-By:
1477
+ - www4.flickr.bf1.yahoo.com
1478
+ Vary:
1479
+ - Accept-Encoding
1480
+ Content-Length:
1481
+ - '326'
1482
+ Content-Type:
1483
+ - application/json
1484
+ Age:
1485
+ - '0'
1486
+ Via:
1487
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1488
+ http/1.1 r17.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1489
+ Server:
1490
+ - ATS
1491
+ Connection:
1492
+ - keep-alive
1493
+ body:
1494
+ encoding: UTF-8
1495
+ string: '{"photoset":{"id":"72157621226409953", "owner":"8558751@N06", "username":"ktnl",
1496
+ "primary":"3713875609", "secret":"4b441bf691", "server":"3474", "farm":4,
1497
+ "photos":15, "count_views":"124", "count_comments":"0", "count_photos":"15",
1498
+ "count_videos":0, "title":{"_content":"North Sea Round Town"}, "description":{"_content":"North
1499
+ Sea Round Town is the warming-up of the North Sea Jazz Festival in Rotterdam."},
1500
+ "can_comment":1, "date_create":"1247436891", "date_update":"1356165010", "coverphoto_server":"0",
1501
+ "coverphoto_farm":0}, "stat":"ok"}'
1502
+ http_version:
1503
+ recorded_at: Sun, 13 Apr 2014 18:32:54 GMT
1504
+ - request:
1505
+ method: post
1506
+ uri: https://api.flickr.com/services/rest/
1507
+ body:
1508
+ encoding: US-ASCII
1509
+ string: photoset_id=72157620266565933&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1510
+ headers:
1511
+ Accept-Encoding:
1512
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1513
+ Accept:
1514
+ - '*/*'
1515
+ User-Agent:
1516
+ - FlickRaw/0.9.8
1517
+ Authorization:
1518
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1519
+ oauth_nonce="t%2BF3j%2BP4%2FfCACzMGas2WK3Bj9M2JTmwVdFgBZNXeD0M%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1520
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413974", oauth_token="<KUVA_ACCESS_TOKEN>",
1521
+ oauth_version="1.0"
1522
+ Content-Type:
1523
+ - application/x-www-form-urlencoded
1524
+ response:
1525
+ status:
1526
+ code: 200
1527
+ message: OK
1528
+ headers:
1529
+ Date:
1530
+ - Sun, 13 Apr 2014 18:32:54 GMT
1531
+ P3p:
1532
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1533
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1534
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1535
+ Cache-Control:
1536
+ - private
1537
+ X-Served-By:
1538
+ - www100.flickr.bf1.yahoo.com
1539
+ Vary:
1540
+ - Accept-Encoding
1541
+ Content-Length:
1542
+ - '368'
1543
+ Content-Type:
1544
+ - application/json
1545
+ Age:
1546
+ - '2'
1547
+ Via:
1548
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1549
+ http/1.1 r04.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1550
+ Server:
1551
+ - ATS
1552
+ Connection:
1553
+ - keep-alive
1554
+ body:
1555
+ encoding: UTF-8
1556
+ string: '{"photoset":{"id":"72157620266565933", "owner":"8558751@N06", "username":"ktnl",
1557
+ "primary":"3654106253", "secret":"3b5eca01e6", "server":"3394", "farm":4,
1558
+ "photos":186, "count_views":"491", "count_comments":"0", "count_photos":"186",
1559
+ "count_videos":0, "title":{"_content":"New York City"}, "description":{"_content":"These
1560
+ shots were taken with my Nikon D80 and the Nikkor 50mm f\/1.8D in New York
1561
+ City, USA. Some of the shots were taken with the Nikkor 55-200mm f\/4-5.6."},
1562
+ "can_comment":1, "date_create":"1245782076", "date_update":"1356165013", "coverphoto_server":"0",
1563
+ "coverphoto_farm":0}, "stat":"ok"}'
1564
+ http_version:
1565
+ recorded_at: Sun, 13 Apr 2014 18:32:55 GMT
1566
+ - request:
1567
+ method: post
1568
+ uri: https://api.flickr.com/services/rest/
1569
+ body:
1570
+ encoding: US-ASCII
1571
+ string: photoset_id=72157619874753455&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1572
+ headers:
1573
+ Accept-Encoding:
1574
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1575
+ Accept:
1576
+ - '*/*'
1577
+ User-Agent:
1578
+ - FlickRaw/0.9.8
1579
+ Authorization:
1580
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1581
+ oauth_nonce="jyTBCMWmhKfen99ykiRRYW2acab4oG7AAzs59knoJhM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1582
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413975", oauth_token="<KUVA_ACCESS_TOKEN>",
1583
+ oauth_version="1.0"
1584
+ Content-Type:
1585
+ - application/x-www-form-urlencoded
1586
+ response:
1587
+ status:
1588
+ code: 200
1589
+ message: OK
1590
+ headers:
1591
+ Date:
1592
+ - Sun, 13 Apr 2014 18:32:55 GMT
1593
+ P3p:
1594
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1595
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1596
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1597
+ Cache-Control:
1598
+ - private
1599
+ X-Served-By:
1600
+ - www288.flickr.bf1.yahoo.com
1601
+ Vary:
1602
+ - Accept-Encoding
1603
+ Content-Length:
1604
+ - '372'
1605
+ Content-Type:
1606
+ - application/json
1607
+ Age:
1608
+ - '0'
1609
+ Via:
1610
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1611
+ http/1.1 r25.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1612
+ Server:
1613
+ - ATS
1614
+ Connection:
1615
+ - keep-alive
1616
+ body:
1617
+ encoding: UTF-8
1618
+ string: '{"photoset":{"id":"72157619874753455", "owner":"8558751@N06", "username":"ktnl",
1619
+ "primary":"3643159571", "secret":"f7623d5eaf", "server":"3570", "farm":4,
1620
+ "photos":133, "count_views":"401", "count_comments":"0", "count_photos":"133",
1621
+ "count_videos":0, "title":{"_content":"New York City (UWA)"}, "description":{"_content":"These
1622
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
1623
+ Angle lens, in New York City, USA."}, "can_comment":1, "date_create":"1245423559",
1624
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1625
+ "stat":"ok"}'
1626
+ http_version:
1627
+ recorded_at: Sun, 13 Apr 2014 18:32:55 GMT
1628
+ - request:
1629
+ method: post
1630
+ uri: https://api.flickr.com/services/rest/
1631
+ body:
1632
+ encoding: US-ASCII
1633
+ string: photoset_id=72157618789715578&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1634
+ headers:
1635
+ Accept-Encoding:
1636
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1637
+ Accept:
1638
+ - '*/*'
1639
+ User-Agent:
1640
+ - FlickRaw/0.9.8
1641
+ Authorization:
1642
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1643
+ oauth_nonce="y5r%2BptlDseCnH5WzJijVOhv%2BzjsSyzyAM4R3DFboNyA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1644
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413975", oauth_token="<KUVA_ACCESS_TOKEN>",
1645
+ oauth_version="1.0"
1646
+ Content-Type:
1647
+ - application/x-www-form-urlencoded
1648
+ response:
1649
+ status:
1650
+ code: 200
1651
+ message: OK
1652
+ headers:
1653
+ Date:
1654
+ - Sun, 13 Apr 2014 18:32:55 GMT
1655
+ P3p:
1656
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1657
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1658
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1659
+ Cache-Control:
1660
+ - private
1661
+ X-Served-By:
1662
+ - www29.flickr.bf1.yahoo.com
1663
+ Vary:
1664
+ - Accept-Encoding
1665
+ Content-Length:
1666
+ - '295'
1667
+ Content-Type:
1668
+ - application/json
1669
+ Age:
1670
+ - '3'
1671
+ Via:
1672
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1673
+ http/1.1 r03.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1674
+ Server:
1675
+ - ATS
1676
+ Connection:
1677
+ - keep-alive
1678
+ body:
1679
+ encoding: UTF-8
1680
+ string: '{"photoset":{"id":"72157618789715578", "owner":"8558751@N06", "username":"ktnl",
1681
+ "primary":"3563736117", "secret":"482e7889db", "server":"3656", "farm":4,
1682
+ "photos":13, "count_views":"47", "count_comments":"0", "count_photos":"13",
1683
+ "count_videos":0, "title":{"_content":"Antwerp"}, "description":{"_content":"Shots
1684
+ I''ve taken in Antwerp."}, "can_comment":1, "date_create":"1243286961", "date_update":"1356165009",
1685
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
1686
+ http_version:
1687
+ recorded_at: Sun, 13 Apr 2014 18:32:56 GMT
1688
+ - request:
1689
+ method: post
1690
+ uri: https://api.flickr.com/services/rest/
1691
+ body:
1692
+ encoding: US-ASCII
1693
+ string: photoset_id=72157617813232989&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1694
+ headers:
1695
+ Accept-Encoding:
1696
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1697
+ Accept:
1698
+ - '*/*'
1699
+ User-Agent:
1700
+ - FlickRaw/0.9.8
1701
+ Authorization:
1702
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1703
+ oauth_nonce="kVAER8yCgkifiUmmGzspUsDKIDZ4pN9Kfo6zUL9QAM4%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1704
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413976", oauth_token="<KUVA_ACCESS_TOKEN>",
1705
+ oauth_version="1.0"
1706
+ Content-Type:
1707
+ - application/x-www-form-urlencoded
1708
+ response:
1709
+ status:
1710
+ code: 200
1711
+ message: OK
1712
+ headers:
1713
+ Date:
1714
+ - Sun, 13 Apr 2014 18:32:56 GMT
1715
+ P3p:
1716
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1717
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1718
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1719
+ Cache-Control:
1720
+ - private
1721
+ X-Served-By:
1722
+ - www54.flickr.bf1.yahoo.com
1723
+ Vary:
1724
+ - Accept-Encoding
1725
+ Content-Length:
1726
+ - '334'
1727
+ Content-Type:
1728
+ - application/json
1729
+ Age:
1730
+ - '0'
1731
+ Via:
1732
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1733
+ http/1.1 r24.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1734
+ Server:
1735
+ - ATS
1736
+ Connection:
1737
+ - keep-alive
1738
+ body:
1739
+ encoding: UTF-8
1740
+ string: '{"photoset":{"id":"72157617813232989", "owner":"8558751@N06", "username":"ktnl",
1741
+ "primary":"3515445170", "secret":"468e074632", "server":"3356", "farm":4,
1742
+ "photos":3, "count_views":"31", "count_comments":"0", "count_photos":"3",
1743
+ "count_videos":0, "title":{"_content":"Night At The Docks"}, "description":{"_content":"These
1744
+ shots were taken at the docks of Rotterdam. We were standing near the Maas."},
1745
+ "can_comment":1, "date_create":"1241870453", "date_update":"1356165009", "coverphoto_server":"0",
1746
+ "coverphoto_farm":0}, "stat":"ok"}'
1747
+ http_version:
1748
+ recorded_at: Sun, 13 Apr 2014 18:32:56 GMT
1749
+ - request:
1750
+ method: post
1751
+ uri: https://api.flickr.com/services/rest/
1752
+ body:
1753
+ encoding: US-ASCII
1754
+ string: photoset_id=72157611834597247&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1755
+ headers:
1756
+ Accept-Encoding:
1757
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1758
+ Accept:
1759
+ - '*/*'
1760
+ User-Agent:
1761
+ - FlickRaw/0.9.8
1762
+ Authorization:
1763
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1764
+ oauth_nonce="iQ%2FR8GKQZkA1iHMmxMLXSd%2Fe8OfDyyJaTGDpIc7TxT4%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1765
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413976", oauth_token="<KUVA_ACCESS_TOKEN>",
1766
+ oauth_version="1.0"
1767
+ Content-Type:
1768
+ - application/x-www-form-urlencoded
1769
+ response:
1770
+ status:
1771
+ code: 200
1772
+ message: OK
1773
+ headers:
1774
+ Date:
1775
+ - Sun, 13 Apr 2014 18:32:56 GMT
1776
+ P3p:
1777
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1778
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1779
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1780
+ Cache-Control:
1781
+ - private
1782
+ X-Served-By:
1783
+ - www229.flickr.bf1.yahoo.com
1784
+ Vary:
1785
+ - Accept-Encoding
1786
+ Content-Length:
1787
+ - '356'
1788
+ Content-Type:
1789
+ - application/json
1790
+ Age:
1791
+ - '0'
1792
+ Via:
1793
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1794
+ http/1.1 r25.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1795
+ Server:
1796
+ - ATS
1797
+ Connection:
1798
+ - keep-alive
1799
+ body:
1800
+ encoding: UTF-8
1801
+ string: '{"photoset":{"id":"72157611834597247", "owner":"8558751@N06", "username":"ktnl",
1802
+ "primary":"3149804427", "secret":"0b95ff03f7", "server":"3101", "farm":4,
1803
+ "photos":20, "count_views":"103", "count_comments":"0", "count_photos":"20",
1804
+ "count_videos":0, "title":{"_content":"Red Bull Knock Out"}, "description":{"_content":"The
1805
+ Red Bull Knockout took place in Scheveningen, the Netherlands on November
1806
+ 16th. These shots were taken there."}, "can_comment":1, "date_create":"1230641381",
1807
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1808
+ "stat":"ok"}'
1809
+ http_version:
1810
+ recorded_at: Sun, 13 Apr 2014 18:32:56 GMT
1811
+ - request:
1812
+ method: post
1813
+ uri: https://api.flickr.com/services/rest/
1814
+ body:
1815
+ encoding: US-ASCII
1816
+ string: photoset_id=72157608768338052&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1817
+ headers:
1818
+ Accept-Encoding:
1819
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1820
+ Accept:
1821
+ - '*/*'
1822
+ User-Agent:
1823
+ - FlickRaw/0.9.8
1824
+ Authorization:
1825
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1826
+ oauth_nonce="WG6zqowrP1gwvr9DG09lKmOzVE623zQOhUojJL3i4NQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1827
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413976", oauth_token="<KUVA_ACCESS_TOKEN>",
1828
+ oauth_version="1.0"
1829
+ Content-Type:
1830
+ - application/x-www-form-urlencoded
1831
+ response:
1832
+ status:
1833
+ code: 200
1834
+ message: OK
1835
+ headers:
1836
+ Date:
1837
+ - Sun, 13 Apr 2014 18:32:57 GMT
1838
+ P3p:
1839
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1840
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1841
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1842
+ Cache-Control:
1843
+ - private
1844
+ X-Served-By:
1845
+ - www32.flickr.bf1.yahoo.com
1846
+ Vary:
1847
+ - Accept-Encoding
1848
+ Content-Length:
1849
+ - '354'
1850
+ Content-Type:
1851
+ - application/json
1852
+ Age:
1853
+ - '1'
1854
+ Via:
1855
+ - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1856
+ http/1.1 r13.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1857
+ Server:
1858
+ - ATS
1859
+ Connection:
1860
+ - keep-alive
1861
+ body:
1862
+ encoding: UTF-8
1863
+ string: '{"photoset":{"id":"72157608768338052", "owner":"8558751@N06", "username":"ktnl",
1864
+ "primary":"3070765188", "secret":"28b8fa5d38", "server":"3201", "farm":4,
1865
+ "photos":35, "count_views":"383", "count_comments":"0", "count_photos":"35",
1866
+ "count_videos":0, "title":{"_content":"Zoom Experience ''08"}, "description":{"_content":"Zoom
1867
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
1868
+ in Utrecht by the Zoom.nl magazine."}, "can_comment":1, "date_create":"1226182293",
1869
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
1870
+ "stat":"ok"}'
1871
+ http_version:
1872
+ recorded_at: Sun, 13 Apr 2014 18:32:57 GMT
1873
+ - request:
1874
+ method: post
1875
+ uri: https://api.flickr.com/services/rest/
1876
+ body:
1877
+ encoding: US-ASCII
1878
+ string: photoset_id=72157607994521912&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1879
+ headers:
1880
+ Accept-Encoding:
1881
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1882
+ Accept:
1883
+ - '*/*'
1884
+ User-Agent:
1885
+ - FlickRaw/0.9.8
1886
+ Authorization:
1887
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1888
+ oauth_nonce="evDcjh29kTThr%2BTKYhi62CqLV24aeaR8lila57OQ0wg%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1889
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413977", oauth_token="<KUVA_ACCESS_TOKEN>",
1890
+ oauth_version="1.0"
1891
+ Content-Type:
1892
+ - application/x-www-form-urlencoded
1893
+ response:
1894
+ status:
1895
+ code: 200
1896
+ message: OK
1897
+ headers:
1898
+ Date:
1899
+ - Sun, 13 Apr 2014 18:32:57 GMT
1900
+ P3p:
1901
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1902
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1903
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1904
+ Cache-Control:
1905
+ - private
1906
+ X-Served-By:
1907
+ - www108.flickr.bf1.yahoo.com
1908
+ Vary:
1909
+ - Accept-Encoding
1910
+ Content-Length:
1911
+ - '346'
1912
+ Content-Type:
1913
+ - application/json
1914
+ Age:
1915
+ - '0'
1916
+ Via:
1917
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1918
+ http/1.1 r14.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1919
+ Server:
1920
+ - ATS
1921
+ Connection:
1922
+ - keep-alive
1923
+ body:
1924
+ encoding: UTF-8
1925
+ string: '{"photoset":{"id":"72157607994521912", "owner":"8558751@N06", "username":"ktnl",
1926
+ "primary":"2938539715", "secret":"683e0092c3", "server":"3025", "farm":4,
1927
+ "photos":12, "count_views":"1169", "count_comments":"0", "count_photos":"12",
1928
+ "count_videos":0, "title":{"_content":"100% Tuning"}, "description":{"_content":"100%
1929
+ Tuning is the largest indoor tuning event in Holland. This year was the 5th
1930
+ edition of 100% Tuning in Ahoy Rotterdam."}, "can_comment":1, "date_create":"1223927875",
1931
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1932
+ "stat":"ok"}'
1933
+ http_version:
1934
+ recorded_at: Sun, 13 Apr 2014 18:32:57 GMT
1935
+ - request:
1936
+ method: post
1937
+ uri: https://api.flickr.com/services/rest/
1938
+ body:
1939
+ encoding: US-ASCII
1940
+ string: photoset_id=72157607752895562&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1941
+ headers:
1942
+ Accept-Encoding:
1943
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1944
+ Accept:
1945
+ - '*/*'
1946
+ User-Agent:
1947
+ - FlickRaw/0.9.8
1948
+ Authorization:
1949
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1950
+ oauth_nonce="kuXedfoQ8G%2FSxUZB3nKoN%2BZ3sYBNfkeqJBV%2BWVPbsSM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1951
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413977", oauth_token="<KUVA_ACCESS_TOKEN>",
1952
+ oauth_version="1.0"
1953
+ Content-Type:
1954
+ - application/x-www-form-urlencoded
1955
+ response:
1956
+ status:
1957
+ code: 200
1958
+ message: OK
1959
+ headers:
1960
+ Date:
1961
+ - Sun, 13 Apr 2014 18:32:57 GMT
1962
+ P3p:
1963
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1964
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1965
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1966
+ Cache-Control:
1967
+ - private
1968
+ X-Served-By:
1969
+ - www121.flickr.bf1.yahoo.com
1970
+ Vary:
1971
+ - Accept-Encoding
1972
+ Content-Length:
1973
+ - '358'
1974
+ Content-Type:
1975
+ - application/json
1976
+ Age:
1977
+ - '6'
1978
+ Via:
1979
+ - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1980
+ http/1.1 r20.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1981
+ Server:
1982
+ - ATS
1983
+ Connection:
1984
+ - keep-alive
1985
+ body:
1986
+ encoding: UTF-8
1987
+ string: '{"photoset":{"id":"72157607752895562", "owner":"8558751@N06", "username":"ktnl",
1988
+ "primary":"2914332291", "secret":"fd4400f0dd", "server":"3248", "farm":4,
1989
+ "photos":17, "count_views":"101", "count_comments":"0", "count_photos":"17",
1990
+ "count_videos":0, "title":{"_content":"Training Feijenoord"}, "description":{"_content":"These
1991
+ photos were taken on a saturday at De Kuip in Rotterdam. The selection of
1992
+ Feijenoord 1 was training there at the moment."}, "can_comment":1, "date_create":"1223214961",
1993
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
1994
+ "stat":"ok"}'
1995
+ http_version:
1996
+ recorded_at: Sun, 13 Apr 2014 18:32:59 GMT
1997
+ - request:
1998
+ method: post
1999
+ uri: https://api.flickr.com/services/rest/
2000
+ body:
2001
+ encoding: US-ASCII
2002
+ string: photoset_id=72157607757878689&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2003
+ headers:
2004
+ Accept-Encoding:
2005
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2006
+ Accept:
2007
+ - '*/*'
2008
+ User-Agent:
2009
+ - FlickRaw/0.9.8
2010
+ Authorization:
2011
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2012
+ oauth_nonce="Ffwbw34BQviteadwXboUkfdvbWSGsSMq%2Fmqp9qMl%2BNg%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2013
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413979", oauth_token="<KUVA_ACCESS_TOKEN>",
2014
+ oauth_version="1.0"
2015
+ Content-Type:
2016
+ - application/x-www-form-urlencoded
2017
+ response:
2018
+ status:
2019
+ code: 200
2020
+ message: OK
2021
+ headers:
2022
+ Date:
2023
+ - Sun, 13 Apr 2014 18:33:06 GMT
2024
+ P3p:
2025
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2026
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2027
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2028
+ Cache-Control:
2029
+ - private
2030
+ X-Served-By:
2031
+ - www27.flickr.bf1.yahoo.com
2032
+ Vary:
2033
+ - Accept-Encoding
2034
+ Content-Length:
2035
+ - '361'
2036
+ Content-Type:
2037
+ - application/json
2038
+ Age:
2039
+ - '0'
2040
+ Via:
2041
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2042
+ http/1.1 r08.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2043
+ Server:
2044
+ - ATS
2045
+ Connection:
2046
+ - keep-alive
2047
+ body:
2048
+ encoding: UTF-8
2049
+ string: '{"photoset":{"id":"72157607757878689", "owner":"8558751@N06", "username":"ktnl",
2050
+ "primary":"2914105201", "secret":"ae046eb2ea", "server":"3090", "farm":4,
2051
+ "photos":15, "count_views":"41", "count_comments":"0", "count_photos":"15",
2052
+ "count_videos":0, "title":{"_content":"Rotterdam Road Races"}, "description":{"_content":"The
2053
+ Rotterdam Road Races is an event with several races like the Fortis 1\/2 Marathon
2054
+ Rotterdam, AD 10 Km Loop and Rotterdam on Wheels."}, "can_comment":1, "date_create":"1223208582",
2055
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2056
+ "stat":"ok"}'
2057
+ http_version:
2058
+ recorded_at: Sun, 13 Apr 2014 18:33:06 GMT
2059
+ - request:
2060
+ method: post
2061
+ uri: https://api.flickr.com/services/rest/
2062
+ body:
2063
+ encoding: US-ASCII
2064
+ string: photoset_id=72157607755852863&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2065
+ headers:
2066
+ Accept-Encoding:
2067
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2068
+ Accept:
2069
+ - '*/*'
2070
+ User-Agent:
2071
+ - FlickRaw/0.9.8
2072
+ Authorization:
2073
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2074
+ oauth_nonce="rrwfv9zIUTSAg%2BfohJoKrTmu8APDpJS2ejHtWop8HKM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2075
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413986", oauth_token="<KUVA_ACCESS_TOKEN>",
2076
+ oauth_version="1.0"
2077
+ Content-Type:
2078
+ - application/x-www-form-urlencoded
2079
+ response:
2080
+ status:
2081
+ code: 200
2082
+ message: OK
2083
+ headers:
2084
+ Date:
2085
+ - Sun, 13 Apr 2014 18:33:06 GMT
2086
+ P3p:
2087
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2088
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2089
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2090
+ Cache-Control:
2091
+ - private
2092
+ X-Served-By:
2093
+ - www315.flickr.bf1.yahoo.com
2094
+ Vary:
2095
+ - Accept-Encoding
2096
+ Content-Length:
2097
+ - '379'
2098
+ Content-Type:
2099
+ - application/json
2100
+ Age:
2101
+ - '2'
2102
+ Via:
2103
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2104
+ http/1.1 r14.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2105
+ Server:
2106
+ - ATS
2107
+ Connection:
2108
+ - keep-alive
2109
+ body:
2110
+ encoding: UTF-8
2111
+ string: '{"photoset":{"id":"72157607755852863", "owner":"8558751@N06", "username":"ktnl",
2112
+ "primary":"2914800312", "secret":"eac896c089", "server":"3197", "farm":4,
2113
+ "photos":19, "count_views":"61", "count_comments":"0", "count_photos":"19",
2114
+ "count_videos":0, "title":{"_content":"Streetmasters ''08"}, "description":{"_content":"Streetmasters
2115
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
2116
+ breakdancers and streetdancers. This was the finale at Westblaak in Rotterdam."},
2117
+ "can_comment":1, "date_create":"1223203353", "date_update":"1356165012", "coverphoto_server":"0",
2118
+ "coverphoto_farm":0}, "stat":"ok"}'
2119
+ http_version:
2120
+ recorded_at: Sun, 13 Apr 2014 18:33:07 GMT
2121
+ - request:
2122
+ method: post
2123
+ uri: https://api.flickr.com/services/rest/
2124
+ body:
2125
+ encoding: US-ASCII
2126
+ string: photoset_id=72157607733513100&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2127
+ headers:
2128
+ Accept-Encoding:
2129
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2130
+ Accept:
2131
+ - '*/*'
2132
+ User-Agent:
2133
+ - FlickRaw/0.9.8
2134
+ Authorization:
2135
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2136
+ oauth_nonce="xfsLk%2FZ%2B%2Fh3Ndz570RwcHf4w2mYy8goI4vjFD38PF8k%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2137
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413987", oauth_token="<KUVA_ACCESS_TOKEN>",
2138
+ oauth_version="1.0"
2139
+ Content-Type:
2140
+ - application/x-www-form-urlencoded
2141
+ response:
2142
+ status:
2143
+ code: 200
2144
+ message: OK
2145
+ headers:
2146
+ Date:
2147
+ - Sun, 13 Apr 2014 18:33:07 GMT
2148
+ P3p:
2149
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2150
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2151
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2152
+ Cache-Control:
2153
+ - private
2154
+ X-Served-By:
2155
+ - www297.flickr.bf1.yahoo.com
2156
+ Vary:
2157
+ - Accept-Encoding
2158
+ Content-Length:
2159
+ - '299'
2160
+ Content-Type:
2161
+ - application/json
2162
+ Age:
2163
+ - '0'
2164
+ Via:
2165
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2166
+ http/1.1 r09.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2167
+ Server:
2168
+ - ATS
2169
+ Connection:
2170
+ - keep-alive
2171
+ body:
2172
+ encoding: UTF-8
2173
+ string: '{"photoset":{"id":"72157607733513100", "owner":"8558751@N06", "username":"ktnl",
2174
+ "primary":"2912489161", "secret":"d2fb34f716", "server":"3105", "farm":4,
2175
+ "photos":24, "count_views":"67", "count_comments":"0", "count_photos":"24",
2176
+ "count_videos":0, "title":{"_content":"Diergaarde Blijdorp"}, "description":{"_content":"Rotterdam
2177
+ Zoo: Diergaarde Blijdorp"}, "can_comment":1, "date_create":"1223156815", "date_update":"1356165012",
2178
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2179
+ http_version:
2180
+ recorded_at: Sun, 13 Apr 2014 18:33:07 GMT
2181
+ - request:
2182
+ method: post
2183
+ uri: https://api.flickr.com/services/rest/
2184
+ body:
2185
+ encoding: US-ASCII
2186
+ string: photoset_id=72157607758936165&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2187
+ headers:
2188
+ Accept-Encoding:
2189
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2190
+ Accept:
2191
+ - '*/*'
2192
+ User-Agent:
2193
+ - FlickRaw/0.9.8
2194
+ Authorization:
2195
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2196
+ oauth_nonce="ZYxzQfdED0NGmqLI3BeDaUqFun5EZHD1Dy8E4GWETwg%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2197
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413987", oauth_token="<KUVA_ACCESS_TOKEN>",
2198
+ oauth_version="1.0"
2199
+ Content-Type:
2200
+ - application/x-www-form-urlencoded
2201
+ response:
2202
+ status:
2203
+ code: 200
2204
+ message: OK
2205
+ headers:
2206
+ Date:
2207
+ - Sun, 13 Apr 2014 18:33:07 GMT
2208
+ P3p:
2209
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2210
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2211
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2212
+ Cache-Control:
2213
+ - private
2214
+ X-Served-By:
2215
+ - www275.flickr.bf1.yahoo.com
2216
+ Vary:
2217
+ - Accept-Encoding
2218
+ Content-Length:
2219
+ - '381'
2220
+ Content-Type:
2221
+ - application/json
2222
+ Age:
2223
+ - '0'
2224
+ Via:
2225
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2226
+ http/1.1 r24.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2227
+ Server:
2228
+ - ATS
2229
+ Connection:
2230
+ - keep-alive
2231
+ body:
2232
+ encoding: UTF-8
2233
+ string: '{"photoset":{"id":"72157607758936165", "owner":"8558751@N06", "username":"ktnl",
2234
+ "primary":"2914184769", "secret":"26ca769e6a", "server":"3100", "farm":4,
2235
+ "photos":23, "count_views":"65", "count_comments":"0", "count_photos":"23",
2236
+ "count_videos":0, "title":{"_content":"I (heart) Threadless"}, "description":{"_content":"Photos
2237
+ from our so-called &quot;I (heart) Threadless&quot; photoshoot for our profile
2238
+ on the Threadless website. It took place under the Brienenoordbrug in Rotterdam."},
2239
+ "can_comment":1, "date_create":"1223211099", "date_update":"1356165013", "coverphoto_server":"0",
2240
+ "coverphoto_farm":0}, "stat":"ok"}'
2241
+ http_version:
2242
+ recorded_at: Sun, 13 Apr 2014 18:33:07 GMT
2243
+ - request:
2244
+ method: post
2245
+ uri: https://api.flickr.com/services/rest/
2246
+ body:
2247
+ encoding: US-ASCII
2248
+ string: photoset_id=72157604876037835&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2249
+ headers:
2250
+ Accept-Encoding:
2251
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2252
+ Accept:
2253
+ - '*/*'
2254
+ User-Agent:
2255
+ - FlickRaw/0.9.8
2256
+ Authorization:
2257
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2258
+ oauth_nonce="bIOif3rA8QKDdKl6uvjnCoMFgdB30W%2FoB1UP6F84Ygo%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2259
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413987", oauth_token="<KUVA_ACCESS_TOKEN>",
2260
+ oauth_version="1.0"
2261
+ Content-Type:
2262
+ - application/x-www-form-urlencoded
2263
+ response:
2264
+ status:
2265
+ code: 200
2266
+ message: OK
2267
+ headers:
2268
+ Date:
2269
+ - Sun, 13 Apr 2014 18:33:08 GMT
2270
+ P3p:
2271
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2272
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2273
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2274
+ Cache-Control:
2275
+ - private
2276
+ X-Served-By:
2277
+ - www53.flickr.bf1.yahoo.com
2278
+ Vary:
2279
+ - Accept-Encoding
2280
+ Content-Length:
2281
+ - '350'
2282
+ Content-Type:
2283
+ - application/json
2284
+ Age:
2285
+ - '3'
2286
+ Via:
2287
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2288
+ http/1.1 r11.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2289
+ Server:
2290
+ - ATS
2291
+ Connection:
2292
+ - keep-alive
2293
+ body:
2294
+ encoding: UTF-8
2295
+ string: '{"photoset":{"id":"72157604876037835", "owner":"8558751@N06", "username":"ktnl",
2296
+ "primary":"3514636763", "secret":"f13062d9e4", "server":"3317", "farm":4,
2297
+ "photos":16, "count_views":"330", "count_comments":"0", "count_photos":"16",
2298
+ "count_videos":0, "title":{"_content":"Me, Myself & I"}, "description":{"_content":"The
2299
+ title of this set says it all. These are obviously selfportrets or images
2300
+ of me made by other people."}, "can_comment":1, "date_create":"1209896547",
2301
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2302
+ "stat":"ok"}'
2303
+ http_version:
2304
+ recorded_at: Sun, 13 Apr 2014 18:33:09 GMT
2305
+ - request:
2306
+ method: post
2307
+ uri: https://api.flickr.com/services/rest/
2308
+ body:
2309
+ encoding: US-ASCII
2310
+ string: photoset_id=72157613432665353&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2311
+ headers:
2312
+ Accept-Encoding:
2313
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2314
+ Accept:
2315
+ - '*/*'
2316
+ User-Agent:
2317
+ - FlickRaw/0.9.8
2318
+ Authorization:
2319
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2320
+ oauth_nonce="Lt4Lz%2B3ZG6%2Bz%2FXUUAe2M%2FgVzX305jaEH0ySp%2FSTewTA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2321
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413989", oauth_token="<KUVA_ACCESS_TOKEN>",
2322
+ oauth_version="1.0"
2323
+ Content-Type:
2324
+ - application/x-www-form-urlencoded
2325
+ response:
2326
+ status:
2327
+ code: 200
2328
+ message: OK
2329
+ headers:
2330
+ Date:
2331
+ - Sun, 13 Apr 2014 18:33:09 GMT
2332
+ P3p:
2333
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2334
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2335
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2336
+ Cache-Control:
2337
+ - private
2338
+ X-Served-By:
2339
+ - www128.flickr.bf1.yahoo.com
2340
+ Vary:
2341
+ - Accept-Encoding
2342
+ Content-Length:
2343
+ - '285'
2344
+ Content-Type:
2345
+ - application/json
2346
+ Age:
2347
+ - '2'
2348
+ Via:
2349
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2350
+ http/1.1 r04.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2351
+ Server:
2352
+ - ATS
2353
+ Connection:
2354
+ - keep-alive
2355
+ body:
2356
+ encoding: UTF-8
2357
+ string: '{"photoset":{"id":"72157613432665353", "owner":"8558751@N06", "username":"ktnl",
2358
+ "primary":"3831523902", "secret":"9cf20046e1", "server":"3534", "farm":4,
2359
+ "photos":33, "count_views":"64", "count_comments":"0", "count_photos":"33",
2360
+ "count_videos":0, "title":{"_content":"Portraits"}, "description":{"_content":"Portraits
2361
+ of people."}, "can_comment":1, "date_create":"1233996281", "date_update":"1356165012",
2362
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2363
+ http_version:
2364
+ recorded_at: Sun, 13 Apr 2014 18:33:10 GMT
2365
+ - request:
2366
+ method: post
2367
+ uri: https://api.flickr.com/services/rest/
2368
+ body:
2369
+ encoding: US-ASCII
2370
+ string: photoset_id=72157607956377672&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2371
+ headers:
2372
+ Accept-Encoding:
2373
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2374
+ Accept:
2375
+ - '*/*'
2376
+ User-Agent:
2377
+ - FlickRaw/0.9.8
2378
+ Authorization:
2379
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2380
+ oauth_nonce="qbNtgDXvJF5dH3BOrOfqIo3zaWtyAG5HX3eBAgruQrQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2381
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413990", oauth_token="<KUVA_ACCESS_TOKEN>",
2382
+ oauth_version="1.0"
2383
+ Content-Type:
2384
+ - application/x-www-form-urlencoded
2385
+ response:
2386
+ status:
2387
+ code: 200
2388
+ message: OK
2389
+ headers:
2390
+ Date:
2391
+ - Sun, 13 Apr 2014 18:33:10 GMT
2392
+ P3p:
2393
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2394
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2395
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2396
+ Cache-Control:
2397
+ - private
2398
+ X-Served-By:
2399
+ - www291.flickr.bf1.yahoo.com
2400
+ Vary:
2401
+ - Accept-Encoding
2402
+ Content-Length:
2403
+ - '405'
2404
+ Content-Type:
2405
+ - application/json
2406
+ Age:
2407
+ - '3'
2408
+ Via:
2409
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2410
+ http/1.1 r10.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2411
+ Server:
2412
+ - ATS
2413
+ Connection:
2414
+ - keep-alive
2415
+ body:
2416
+ encoding: UTF-8
2417
+ string: '{"photoset":{"id":"72157607956377672", "owner":"8558751@N06", "username":"ktnl",
2418
+ "primary":"2933987351", "secret":"22ce24ddf9", "server":"3179", "farm":4,
2419
+ "photos":21, "count_views":"86", "count_comments":"0", "count_photos":"21",
2420
+ "count_videos":0, "title":{"_content":"Egypt"}, "description":{"_content":"In
2421
+ August 2008 I went to Sharm El-Sheikh, Egypt with my brother. We''ve also
2422
+ visited Cairo while we were there. All of these were taken with my Fujifilm
2423
+ FinePix s9600 (which I''ve sold)."}, "can_comment":1, "date_create":"1223824830",
2424
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2425
+ "stat":"ok"}'
2426
+ http_version:
2427
+ recorded_at: Sun, 13 Apr 2014 18:33:11 GMT
2428
+ - request:
2429
+ method: post
2430
+ uri: https://api.flickr.com/services/rest/
2431
+ body:
2432
+ encoding: US-ASCII
2433
+ string: photoset_id=72157607747813484&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2434
+ headers:
2435
+ Accept-Encoding:
2436
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2437
+ Accept:
2438
+ - '*/*'
2439
+ User-Agent:
2440
+ - FlickRaw/0.9.8
2441
+ Authorization:
2442
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2443
+ oauth_nonce="z9BSQluaR5TzNH%2FHMN79oMoN30FS9XFePp%2FmMYmW0N8%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2444
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413991", oauth_token="<KUVA_ACCESS_TOKEN>",
2445
+ oauth_version="1.0"
2446
+ Content-Type:
2447
+ - application/x-www-form-urlencoded
2448
+ response:
2449
+ status:
2450
+ code: 200
2451
+ message: OK
2452
+ headers:
2453
+ Date:
2454
+ - Sun, 13 Apr 2014 18:33:13 GMT
2455
+ P3p:
2456
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2457
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2458
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2459
+ Cache-Control:
2460
+ - private
2461
+ X-Served-By:
2462
+ - www32.flickr.bf1.yahoo.com
2463
+ Vary:
2464
+ - Accept-Encoding
2465
+ Content-Length:
2466
+ - '361'
2467
+ Content-Type:
2468
+ - application/json
2469
+ Age:
2470
+ - '0'
2471
+ Via:
2472
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2473
+ http/1.1 r25.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2474
+ Server:
2475
+ - ATS
2476
+ Connection:
2477
+ - keep-alive
2478
+ body:
2479
+ encoding: UTF-8
2480
+ string: '{"photoset":{"id":"72157607747813484", "owner":"8558751@N06", "username":"ktnl",
2481
+ "primary":"2914660920", "secret":"577a301104", "server":"3190", "farm":4,
2482
+ "photos":11, "count_views":"21", "count_comments":"0", "count_photos":"11",
2483
+ "count_videos":0, "title":{"_content":"Wereld havendagen"}, "description":{"_content":"The
2484
+ world harbor day is a large event in Rotterdam. It is meant to show what takes
2485
+ place in Europe''s biggest port."}, "can_comment":1, "date_create":"1223197948",
2486
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2487
+ "stat":"ok"}'
2488
+ http_version:
2489
+ recorded_at: Sun, 13 Apr 2014 18:33:13 GMT
2490
+ - request:
2491
+ method: post
2492
+ uri: https://api.flickr.com/services/rest/
2493
+ body:
2494
+ encoding: US-ASCII
2495
+ string: photoset_id=72157608065768431&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2496
+ headers:
2497
+ Accept-Encoding:
2498
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2499
+ Accept:
2500
+ - '*/*'
2501
+ User-Agent:
2502
+ - FlickRaw/0.9.8
2503
+ Authorization:
2504
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2505
+ oauth_nonce="qwpcMZs%2FL6TnhJttCBQc5YM63X2QfII7E2n%2B9FS9uCI%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2506
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413993", oauth_token="<KUVA_ACCESS_TOKEN>",
2507
+ oauth_version="1.0"
2508
+ Content-Type:
2509
+ - application/x-www-form-urlencoded
2510
+ response:
2511
+ status:
2512
+ code: 200
2513
+ message: OK
2514
+ headers:
2515
+ Date:
2516
+ - Sun, 13 Apr 2014 18:33:13 GMT
2517
+ P3p:
2518
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2519
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2520
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2521
+ Cache-Control:
2522
+ - private
2523
+ X-Served-By:
2524
+ - www288.flickr.bf1.yahoo.com
2525
+ Vary:
2526
+ - Accept-Encoding
2527
+ Content-Length:
2528
+ - '328'
2529
+ Content-Type:
2530
+ - application/json
2531
+ Age:
2532
+ - '0'
2533
+ Via:
2534
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2535
+ http/1.1 r19.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2536
+ Server:
2537
+ - ATS
2538
+ Connection:
2539
+ - keep-alive
2540
+ body:
2541
+ encoding: UTF-8
2542
+ string: '{"photoset":{"id":"72157608065768431", "owner":"8558751@N06", "username":"ktnl",
2543
+ "primary":"3260304504", "secret":"b566f0c1fa", "server":"3403", "farm":4,
2544
+ "photos":8, "count_views":"315", "count_comments":"0", "count_photos":"8",
2545
+ "count_videos":0, "title":{"_content":"Gadgets & Gear"}, "description":{"_content":"This
2546
+ set contains photos from my gadgets, gear and other shots that fit this set."},
2547
+ "can_comment":1, "date_create":"1224100790", "date_update":"1356165012", "coverphoto_server":"0",
2548
+ "coverphoto_farm":0}, "stat":"ok"}'
2549
+ http_version:
2550
+ recorded_at: Sun, 13 Apr 2014 18:33:13 GMT
2551
+ - request:
2552
+ method: post
2553
+ uri: https://api.flickr.com/services/rest/
2554
+ body:
2555
+ encoding: US-ASCII
2556
+ string: photoset_id=72157602136210676&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2557
+ headers:
2558
+ Accept-Encoding:
2559
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2560
+ Accept:
2561
+ - '*/*'
2562
+ User-Agent:
2563
+ - FlickRaw/0.9.8
2564
+ Authorization:
2565
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2566
+ oauth_nonce="ahhRhqeGqMZteaJJ%2BkbMhPc5Amsw77nEevSGyvqtxlM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2567
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413993", oauth_token="<KUVA_ACCESS_TOKEN>",
2568
+ oauth_version="1.0"
2569
+ Content-Type:
2570
+ - application/x-www-form-urlencoded
2571
+ response:
2572
+ status:
2573
+ code: 200
2574
+ message: OK
2575
+ headers:
2576
+ Date:
2577
+ - Sun, 13 Apr 2014 18:33:14 GMT
2578
+ P3p:
2579
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2580
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2581
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2582
+ Cache-Control:
2583
+ - private
2584
+ X-Served-By:
2585
+ - www242.flickr.bf1.yahoo.com
2586
+ Vary:
2587
+ - Accept-Encoding
2588
+ Content-Length:
2589
+ - '389'
2590
+ Content-Type:
2591
+ - application/json
2592
+ Age:
2593
+ - '0'
2594
+ Via:
2595
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2596
+ http/1.1 r20.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2597
+ Server:
2598
+ - ATS
2599
+ Connection:
2600
+ - keep-alive
2601
+ body:
2602
+ encoding: UTF-8
2603
+ string: '{"photoset":{"id":"72157602136210676", "owner":"8558751@N06", "username":"ktnl",
2604
+ "primary":"2463323643", "secret":"49c99715da", "server":"2393", "farm":3,
2605
+ "photos":9, "count_views":"154", "count_comments":"0", "count_photos":"9",
2606
+ "count_videos":0, "title":{"_content":"Cars"}, "description":{"_content":"The
2607
+ photos in this set are of my cars. The first are from my Honda Civic 1.5 LSi
2608
+ ''93, which I''ve sold in the meanwhile. The other photos are from my BMW
2609
+ 316i Compact from ''98, which I currently own."}, "can_comment":1, "date_create":"1190657188",
2610
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2611
+ "stat":"ok"}'
2612
+ http_version:
2613
+ recorded_at: Sun, 13 Apr 2014 18:33:14 GMT
2614
+ - request:
2615
+ method: post
2616
+ uri: https://api.flickr.com/services/rest/
2617
+ body:
2618
+ encoding: US-ASCII
2619
+ string: photoset_id=72157609118757238&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2620
+ headers:
2621
+ Accept-Encoding:
2622
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2623
+ Accept:
2624
+ - '*/*'
2625
+ User-Agent:
2626
+ - FlickRaw/0.9.8
2627
+ Authorization:
2628
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2629
+ oauth_nonce="FXFzorfKG9vwYvrGpDTCSl3u9rIke9X3GBvZTTwRUBQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2630
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413994", oauth_token="<KUVA_ACCESS_TOKEN>",
2631
+ oauth_version="1.0"
2632
+ Content-Type:
2633
+ - application/x-www-form-urlencoded
2634
+ response:
2635
+ status:
2636
+ code: 200
2637
+ message: OK
2638
+ headers:
2639
+ Date:
2640
+ - Sun, 13 Apr 2014 18:33:14 GMT
2641
+ P3p:
2642
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2643
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2644
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2645
+ Cache-Control:
2646
+ - private
2647
+ X-Served-By:
2648
+ - www6.flickr.bf1.yahoo.com
2649
+ Vary:
2650
+ - Accept-Encoding
2651
+ Content-Length:
2652
+ - '342'
2653
+ Content-Type:
2654
+ - application/json
2655
+ Age:
2656
+ - '0'
2657
+ Via:
2658
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2659
+ http/1.1 r17.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2660
+ Server:
2661
+ - ATS
2662
+ Connection:
2663
+ - keep-alive
2664
+ body:
2665
+ encoding: UTF-8
2666
+ string: '{"photoset":{"id":"72157609118757238", "owner":"8558751@N06", "username":"ktnl",
2667
+ "primary":"2979327772", "secret":"1709ca8191", "server":"3048", "farm":4,
2668
+ "photos":101, "count_views":"79", "count_comments":"0", "count_photos":"101",
2669
+ "count_videos":0, "title":{"_content":"Bokeh"}, "description":{"_content":"Photographs
2670
+ that I''ve taken with out-of-focus areas in it produced by a shallow depth
2671
+ of field."}, "can_comment":1, "date_create":"1226764945", "date_update":"1356165012",
2672
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2673
+ http_version:
2674
+ recorded_at: Sun, 13 Apr 2014 18:33:14 GMT
2675
+ - request:
2676
+ method: post
2677
+ uri: https://api.flickr.com/services/rest/
2678
+ body:
2679
+ encoding: US-ASCII
2680
+ string: photoset_id=72157608164792364&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2681
+ headers:
2682
+ Accept-Encoding:
2683
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2684
+ Accept:
2685
+ - '*/*'
2686
+ User-Agent:
2687
+ - FlickRaw/0.9.8
2688
+ Authorization:
2689
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2690
+ oauth_nonce="oMRG31BZwOCms1KrUFC3f7BstJJ%2BOIjj95nBdj%2BnZMA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2691
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413994", oauth_token="<KUVA_ACCESS_TOKEN>",
2692
+ oauth_version="1.0"
2693
+ Content-Type:
2694
+ - application/x-www-form-urlencoded
2695
+ response:
2696
+ status:
2697
+ code: 200
2698
+ message: OK
2699
+ headers:
2700
+ Date:
2701
+ - Sun, 13 Apr 2014 18:33:14 GMT
2702
+ P3p:
2703
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2704
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2705
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2706
+ Cache-Control:
2707
+ - private
2708
+ X-Served-By:
2709
+ - www7.flickr.bf1.yahoo.com
2710
+ Vary:
2711
+ - Accept-Encoding
2712
+ Content-Length:
2713
+ - '329'
2714
+ Content-Type:
2715
+ - application/json
2716
+ Age:
2717
+ - '3'
2718
+ Via:
2719
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2720
+ http/1.1 r19.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2721
+ Server:
2722
+ - ATS
2723
+ Connection:
2724
+ - keep-alive
2725
+ body:
2726
+ encoding: UTF-8
2727
+ string: '{"photoset":{"id":"72157608164792364", "owner":"8558751@N06", "username":"ktnl",
2728
+ "primary":"2955114833", "secret":"7322751b77", "server":"3029", "farm":4,
2729
+ "photos":26, "count_views":"46", "count_comments":"0", "count_photos":"26",
2730
+ "count_videos":0, "title":{"_content":"Selective Colors"}, "description":{"_content":"This
2731
+ set contains photos that are mainly black and white with a selective color."},
2732
+ "can_comment":1, "date_create":"1224414579", "date_update":"1356165012", "coverphoto_server":"0",
2733
+ "coverphoto_farm":0}, "stat":"ok"}'
2734
+ http_version:
2735
+ recorded_at: Sun, 13 Apr 2014 18:33:15 GMT
2736
+ - request:
2737
+ method: post
2738
+ uri: https://api.flickr.com/services/rest/
2739
+ body:
2740
+ encoding: US-ASCII
2741
+ string: photoset_id=72157608177901148&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2742
+ headers:
2743
+ Accept-Encoding:
2744
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2745
+ Accept:
2746
+ - '*/*'
2747
+ User-Agent:
2748
+ - FlickRaw/0.9.8
2749
+ Authorization:
2750
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2751
+ oauth_nonce="kJ66Dpii2it11HSDwJ%2F8vp1BVHRo5SKwooX3oQbldNU%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2752
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413995", oauth_token="<KUVA_ACCESS_TOKEN>",
2753
+ oauth_version="1.0"
2754
+ Content-Type:
2755
+ - application/x-www-form-urlencoded
2756
+ response:
2757
+ status:
2758
+ code: 200
2759
+ message: OK
2760
+ headers:
2761
+ Date:
2762
+ - Sun, 13 Apr 2014 18:33:15 GMT
2763
+ P3p:
2764
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2765
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2766
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2767
+ Cache-Control:
2768
+ - private
2769
+ X-Served-By:
2770
+ - www17.flickr.bf1.yahoo.com
2771
+ Vary:
2772
+ - Accept-Encoding
2773
+ Content-Length:
2774
+ - '363'
2775
+ Content-Type:
2776
+ - application/json
2777
+ Age:
2778
+ - '0'
2779
+ Via:
2780
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2781
+ http/1.1 r24.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2782
+ Server:
2783
+ - ATS
2784
+ Connection:
2785
+ - keep-alive
2786
+ body:
2787
+ encoding: UTF-8
2788
+ string: '{"photoset":{"id":"72157608177901148", "owner":"8558751@N06", "username":"ktnl",
2789
+ "primary":"3643167761", "secret":"32da16b737", "server":"2465", "farm":3,
2790
+ "photos":208, "count_views":"43", "count_comments":"0", "count_photos":"208",
2791
+ "count_videos":0, "title":{"_content":"Black & White"}, "description":{"_content":"The
2792
+ title of this set is pretty self explanatory, but just to make it more clear...
2793
+ it contains black and white photographs."}, "can_comment":1, "date_create":"1224448207",
2794
+ "date_update":"1356165013", "coverphoto_server":"0", "coverphoto_farm":0},
2795
+ "stat":"ok"}'
2796
+ http_version:
2797
+ recorded_at: Sun, 13 Apr 2014 18:33:15 GMT
2798
+ - request:
2799
+ method: post
2800
+ uri: https://api.flickr.com/services/rest/
2801
+ body:
2802
+ encoding: US-ASCII
2803
+ string: photoset_id=72157609130124623&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2804
+ headers:
2805
+ Accept-Encoding:
2806
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2807
+ Accept:
2808
+ - '*/*'
2809
+ User-Agent:
2810
+ - FlickRaw/0.9.8
2811
+ Authorization:
2812
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2813
+ oauth_nonce="l4aDRvGe9cQ%2B4NTeGg67iCYb6mgHJUy0RvTXmM2wqsk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2814
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413995", oauth_token="<KUVA_ACCESS_TOKEN>",
2815
+ oauth_version="1.0"
2816
+ Content-Type:
2817
+ - application/x-www-form-urlencoded
2818
+ response:
2819
+ status:
2820
+ code: 200
2821
+ message: OK
2822
+ headers:
2823
+ Date:
2824
+ - Sun, 13 Apr 2014 18:33:15 GMT
2825
+ P3p:
2826
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2827
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2828
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2829
+ Cache-Control:
2830
+ - private
2831
+ X-Served-By:
2832
+ - www225.flickr.bf1.yahoo.com
2833
+ Vary:
2834
+ - Accept-Encoding
2835
+ Content-Length:
2836
+ - '280'
2837
+ Content-Type:
2838
+ - application/json
2839
+ Age:
2840
+ - '0'
2841
+ Via:
2842
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2843
+ http/1.1 r04.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2844
+ Server:
2845
+ - ATS
2846
+ Connection:
2847
+ - keep-alive
2848
+ body:
2849
+ encoding: UTF-8
2850
+ string: '{"photoset":{"id":"72157609130124623", "owner":"8558751@N06", "username":"ktnl",
2851
+ "primary":"3031746973", "secret":"179aa08c2e", "server":"3294", "farm":4,
2852
+ "photos":8, "count_views":"35", "count_comments":"0", "count_photos":"8",
2853
+ "count_videos":0, "title":{"_content":"Product Photography"}, "description":{"_content":""},
2854
+ "can_comment":1, "date_create":"1226763941", "date_update":"1356165012", "coverphoto_server":"0",
2855
+ "coverphoto_farm":0}, "stat":"ok"}'
2856
+ http_version:
2857
+ recorded_at: Sun, 13 Apr 2014 18:33:15 GMT
2858
+ - request:
2859
+ method: post
2860
+ uri: https://api.flickr.com/services/rest/
2861
+ body:
2862
+ encoding: US-ASCII
2863
+ string: photoset_id=72157600303479345&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2864
+ headers:
2865
+ Accept-Encoding:
2866
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2867
+ Accept:
2868
+ - '*/*'
2869
+ User-Agent:
2870
+ - FlickRaw/0.9.8
2871
+ Authorization:
2872
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2873
+ oauth_nonce="hRGeWSO%2FzTYsJfREMtZ%2BoSD0kgoEBDUfBn%2F0%2BjZjV2A%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2874
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397413995", oauth_token="<KUVA_ACCESS_TOKEN>",
2875
+ oauth_version="1.0"
2876
+ Content-Type:
2877
+ - application/x-www-form-urlencoded
2878
+ response:
2879
+ status:
2880
+ code: 200
2881
+ message: OK
2882
+ headers:
2883
+ Date:
2884
+ - Sun, 13 Apr 2014 18:33:16 GMT
2885
+ P3p:
2886
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2887
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2888
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2889
+ Cache-Control:
2890
+ - private
2891
+ X-Served-By:
2892
+ - www289.flickr.bf1.yahoo.com
2893
+ Vary:
2894
+ - Accept-Encoding
2895
+ Content-Length:
2896
+ - '290'
2897
+ Content-Type:
2898
+ - application/json
2899
+ Age:
2900
+ - '4'
2901
+ Via:
2902
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2903
+ http/1.1 r25.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2904
+ Server:
2905
+ - ATS
2906
+ Connection:
2907
+ - keep-alive
2908
+ body:
2909
+ encoding: UTF-8
2910
+ string: '{"photoset":{"id":"72157600303479345", "owner":"8558751@N06", "username":"ktnl",
2911
+ "primary":"2464410072", "secret":"99a2e64e3e", "server":"2272", "farm":3,
2912
+ "photos":7, "count_views":"54", "count_comments":"0", "count_photos":"7",
2913
+ "count_videos":0, "title":{"_content":"Nature"}, "description":{"_content":"Flora,
2914
+ fauna and landscapes."}, "can_comment":1, "date_create":"1180873266", "date_update":"1356165017",
2915
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2916
+ http_version:
2917
+ recorded_at: Sun, 13 Apr 2014 18:33:17 GMT
2918
+ recorded_with: VCR 2.9.0