kuva 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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,3169 @@
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="WPXifqvy7A4EKpjx65y3jEvANVZMhZPoRAZo4hMyxwU%3D", oauth_signature="<KUVA_SHARED_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632470", 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
+ - Wed, 16 Apr 2014 07:14:31 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
+ - www38.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 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r17.ycpi.dee.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: Wed, 16 Apr 2014 07:14:31 GMT
160
+ - request:
161
+ method: post
162
+ uri: https://api.flickr.com/services/rest/
163
+ body:
164
+ encoding: US-ASCII
165
+ string: photo_id=8318972536&method=flickr.photos.getInfo&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="jaFIP%2BHYtbbzrctmDwLmAbewLtB80vJldowQD0dhH1Y%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
176
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632471", 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
+ - Wed, 16 Apr 2014 07:14:31 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
+ - www234.flickr.bf1.yahoo.com
195
+ Vary:
196
+ - Accept-Encoding
197
+ Content-Length:
198
+ - '1142'
199
+ Content-Type:
200
+ - application/json
201
+ Age:
202
+ - '3'
203
+ Via:
204
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
205
+ http/1.1 r17.ycpi.dee.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
206
+ Server:
207
+ - ATS
208
+ Connection:
209
+ - keep-alive
210
+ body:
211
+ encoding: UTF-8
212
+ string: '{"photo":{"id":"8318972536", "secret":"eda82f692f", "server":"8499",
213
+ "farm":9, "dateuploaded":"1356715400", "isfavorite":0, "license":"0", "safety_level":"0",
214
+ "rotation":0, "originalsecret":"e0a5236919", "originalformat":"jpg", "owner":{"nsid":"8558751@N06",
215
+ "username":"ktnl", "realname":"Kevin Tuhumury", "location":"", "iconserver":"213",
216
+ "iconfarm":1, "path_alias":"kevintuhumury"}, "title":{"_content":"Top of the
217
+ Eiffel Tower"}, "description":{"_content":"These shots were taken in Paris,
218
+ France in December 2012. Most of them are taken with my Nikon D80 and Nikkor
219
+ 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "visibility":{"ispublic":1, "isfriend":0,
220
+ "isfamily":0}, "dates":{"posted":"1356715400", "taken":"2012-12-02 11:15:32",
221
+ "takengranularity":"0", "lastupdate":"1356791896"}, "permissions":{"permcomment":3,
222
+ "permaddmeta":2}, "views":"318", "editability":{"cancomment":1, "canaddmeta":1},
223
+ "publiceditability":{"cancomment":1, "canaddmeta":0}, "usage":{"candownload":1,
224
+ "canblog":1, "canprint":1, "canshare":1}, "comments":{"_content":"0"}, "notes":{"note":[]},
225
+ "people":{"haspeople":0}, "tags":{"tag":[{"id":"8513429-8318972536-484", "author":"8558751@N06",
226
+ "authorname":"ktnl", "raw":"Paris", "_content":"paris", "machine_tag":0},
227
+ {"id":"8513429-8318972536-487", "author":"8558751@N06", "authorname":"ktnl",
228
+ "raw":"France", "_content":"france", "machine_tag":0}, {"id":"8513429-8318972536-9178",
229
+ "author":"8558751@N06", "authorname":"ktnl", "raw":"Eiffel", "_content":"eiffel",
230
+ "machine_tag":0}, {"id":"8513429-8318972536-6973", "author":"8558751@N06",
231
+ "authorname":"ktnl", "raw":"Eiffel tower", "_content":"eiffeltower", "machine_tag":0},
232
+ {"id":"8513429-8318972536-5080", "author":"8558751@N06", "authorname":"ktnl",
233
+ "raw":"Louvre", "_content":"louvre", "machine_tag":0}, {"id":"8513429-8318972536-44616",
234
+ "author":"8558751@N06", "authorname":"ktnl", "raw":"Arc de Triomphe", "_content":"arcdetriomphe",
235
+ "machine_tag":0}, {"id":"8513429-8318972536-11119", "author":"8558751@N06",
236
+ "authorname":"ktnl", "raw":"Notre Dame", "_content":"notredame", "machine_tag":0},
237
+ {"id":"8513429-8318972536-1128", "author":"8558751@N06", "authorname":"ktnl",
238
+ "raw":"Seine", "_content":"seine", "machine_tag":0}, {"id":"8513429-8318972536-315853",
239
+ "author":"8558751@N06", "authorname":"ktnl", "raw":"Champs-\u00c9lys\u00e9es",
240
+ "_content":"champs\u00e9lys\u00e9es", "machine_tag":0}]}, "location":{"latitude":48.858108,
241
+ "longitude":2.300004, "accuracy":"14", "context":"0", "neighbourhood":{"_content":"Gros
242
+ Caillou", "place_id":"Gh_droFUV7JfPjFofw", "woeid":"55843775"}, "locality":{"_content":"Paris",
243
+ "place_id":"EsIQUYZXU79_kEA", "woeid":"615702"}, "county":{"_content":"Paris",
244
+ "place_id":".tpTHPFQUL.gM81.cQ", "woeid":"12597155"}, "region":{"_content":"Ile-de-France",
245
+ "place_id":"QLdv_.RWU7_jEfrE", "woeid":"7153319"}, "country":{"_content":"France",
246
+ "place_id":"lbWye9tTUb6GOcp80w", "woeid":"23424819"}, "place_id":"Gh_droFUV7JfPjFofw",
247
+ "woeid":"55843775"}, "geoperms":{"ispublic":1, "iscontact":0, "isfriend":0,
248
+ "isfamily":0}, "urls":{"url":[{"type":"photopage", "_content":"https:\/\/www.flickr.com\/photos\/kevintuhumury\/8318972536\/"}]},
249
+ "media":"photo"}, "stat":"ok"}'
250
+ http_version:
251
+ recorded_at: Wed, 16 Apr 2014 07:14:32 GMT
252
+ - request:
253
+ method: post
254
+ uri: https://api.flickr.com/services/rest/
255
+ body:
256
+ encoding: US-ASCII
257
+ string: photoset_id=72157632367381040&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
258
+ headers:
259
+ Accept-Encoding:
260
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
261
+ Accept:
262
+ - '*/*'
263
+ User-Agent:
264
+ - FlickRaw/0.9.8
265
+ Authorization:
266
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
267
+ oauth_nonce="w4YjawMtlMvDmn6KYijt3zYejcHUF04YEpxiawByw54%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
268
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632472", oauth_token="<KUVA_ACCESS_TOKEN>",
269
+ oauth_version="1.0"
270
+ Content-Type:
271
+ - application/x-www-form-urlencoded
272
+ response:
273
+ status:
274
+ code: 200
275
+ message: OK
276
+ headers:
277
+ Date:
278
+ - Wed, 16 Apr 2014 07:14:32 GMT
279
+ P3p:
280
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
281
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
282
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
283
+ Cache-Control:
284
+ - private
285
+ X-Served-By:
286
+ - www31.flickr.bf1.yahoo.com
287
+ Vary:
288
+ - Accept-Encoding
289
+ Content-Length:
290
+ - '364'
291
+ Content-Type:
292
+ - application/json
293
+ Age:
294
+ - '0'
295
+ Via:
296
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
297
+ http/1.1 r17.ycpi.dee.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
298
+ Server:
299
+ - ATS
300
+ Connection:
301
+ - keep-alive
302
+ body:
303
+ encoding: UTF-8
304
+ string: '{"photoset":{"id":"72157632367381040", "owner":"8558751@N06", "username":"ktnl",
305
+ "primary":"8318972536", "secret":"eda82f692f", "server":"8499", "farm":9,
306
+ "photos":28, "count_views":"31", "count_comments":"0", "count_photos":"28",
307
+ "count_videos":0, "title":{"_content":"Paris"}, "description":{"_content":"These
308
+ shots were taken in Paris, France in December 2012. Most of them are taken
309
+ with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "can_comment":1,
310
+ "date_create":"1356715289", "date_update":"1356717162", "coverphoto_server":"0",
311
+ "coverphoto_farm":0}, "stat":"ok"}'
312
+ http_version:
313
+ recorded_at: Wed, 16 Apr 2014 07:14:32 GMT
314
+ - request:
315
+ method: post
316
+ uri: https://api.flickr.com/services/rest/
317
+ body:
318
+ encoding: US-ASCII
319
+ string: method=flickr.photosets.getList&format=json&nojsoncallback=1
320
+ headers:
321
+ Accept-Encoding:
322
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
323
+ Accept:
324
+ - '*/*'
325
+ User-Agent:
326
+ - FlickRaw/0.9.8
327
+ Authorization:
328
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
329
+ oauth_nonce="rBiLr38GkGy%2FazkhCTeK%2FPGL03RVqz2T5GZ%2BvEFIHwo%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
330
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632472", oauth_token="<KUVA_ACCESS_TOKEN>",
331
+ oauth_version="1.0"
332
+ Content-Type:
333
+ - application/x-www-form-urlencoded
334
+ response:
335
+ status:
336
+ code: 200
337
+ message: OK
338
+ headers:
339
+ Date:
340
+ - Wed, 16 Apr 2014 07:14:32 GMT
341
+ P3p:
342
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
343
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
344
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
345
+ Cache-Control:
346
+ - private
347
+ X-Served-By:
348
+ - www192.flickr.bf1.yahoo.com
349
+ Vary:
350
+ - Accept-Encoding
351
+ Content-Length:
352
+ - '4368'
353
+ Content-Type:
354
+ - application/json
355
+ Age:
356
+ - '3'
357
+ Via:
358
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
359
+ http/1.1 r10.ycpi.dee.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
360
+ Server:
361
+ - ATS
362
+ Connection:
363
+ - keep-alive
364
+ body:
365
+ encoding: UTF-8
366
+ string: '{"photosets":{"cancreate":1, "page":1, "pages":1, "perpage":40, "total":40,
367
+ "photoset":[{"id":"72157632367381040", "primary":"8318972536", "secret":"eda82f692f",
368
+ "server":"8499", "farm":9, "photos":"28", "videos":0, "title":{"_content":"Paris"},
369
+ "description":{"_content":"These shots were taken in Paris, France in December
370
+ 2012. Most of them are taken with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina
371
+ 12-24mm f\/4."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"31",
372
+ "count_comments":"0", "can_comment":1, "date_create":"1356715289", "date_update":"1356717162"},
373
+ {"id":"72157632303248759", "primary":"8294626229", "secret":"7b8aaeab2b",
374
+ "server":"8081", "farm":9, "photos":"69", "videos":0, "title":{"_content":"Bali"},
375
+ "description":{"_content":"These shots were taken on Bali in May 2012. Most
376
+ of them are taken with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm
377
+ f\/4."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"21",
378
+ "count_comments":"0", "can_comment":1, "date_create":"1356131625", "date_update":"1356189559"},
379
+ {"id":"72157629017578067", "primary":"6757041485", "secret":"643ba72439",
380
+ "server":"7163", "farm":8, "photos":"69", "videos":0, "title":{"_content":"Aruba"},
381
+ "description":{"_content":"These shots were taken on Aruba (One Happy Island)
382
+ in March 2011. Most of them are taken with my Nikon D80 and Tokina 12-24mm
383
+ f\/4.\n\nObviously it''s Aruba from a different point of view."}, "needs_interstitial":0,
384
+ "visibility_can_see_set":1, "count_views":"73", "count_comments":"4", "can_comment":1,
385
+ "date_create":"1327442512", "date_update":"1356165010"}, {"id":"72157628378160739",
386
+ "primary":"6495153913", "secret":"1ba1b324ef", "server":"7145", "farm":8,
387
+ "photos":"51", "videos":0, "title":{"_content":"Carnaval di Aruba ''11"},
388
+ "description":{"_content":"These shots were taken in and around Oranjestad,
389
+ Aruba during the Carnival in March 2011."}, "needs_interstitial":0, "visibility_can_see_set":1,
390
+ "count_views":"89", "count_comments":"0", "can_comment":1, "date_create":"1323640679",
391
+ "date_update":"1356165010"}, {"id":"72157625433863013", "primary":"5245419190",
392
+ "secret":"54cdd111fd", "server":"5282", "farm":6, "photos":"10", "videos":0,
393
+ "title":{"_content":"Zoom Experience ''10"}, "description":{"_content":"These
394
+ shots were taken at the Zoom Experience 2010 in the Jaarbeurs, Utrecht. They
395
+ all feature the model Suraya."}, "needs_interstitial":0, "visibility_can_see_set":1,
396
+ "count_views":"123", "count_comments":"0", "can_comment":1, "date_create":"1291854812",
397
+ "date_update":"1356165009"}, {"id":"72157625523500610", "primary":"5230378378",
398
+ "secret":"fecddda258", "server":"5242", "farm":6, "photos":"30", "videos":0,
399
+ "title":{"_content":"The Hague"}, "description":{"_content":"These shots were
400
+ taken on a sunny afternoon in the centre of The Hague, The Netherlands. Most
401
+ of them have been taken in or around the Binnenhof, where the Dutch parliament
402
+ resides."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"47",
403
+ "count_comments":"0", "can_comment":1, "date_create":"1291422677", "date_update":"1356165010"},
404
+ {"id":"72157624624572356", "primary":"4847033367", "secret":"f455849b72",
405
+ "server":"4146", "farm":5, "photos":"57", "videos":0, "title":{"_content":"Zomer
406
+ Carnaval ''10"}, "description":{"_content":"These shots were taken at the
407
+ Ortel Zomer Carnaval 2010 in Rotterdam. Most of them were taken with my Nikon
408
+ 50 mm f\/1.8D at Leuvehaven and some of them were taken with my Nikon 70-300mm
409
+ f4.5-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"266",
410
+ "count_comments":"0", "can_comment":1, "date_create":"1280613448", "date_update":"1356165011"},
411
+ {"id":"72157623902001333", "primary":"4593271974", "secret":"d2482de61a",
412
+ "server":"3544", "farm":4, "photos":"47", "videos":0, "title":{"_content":"5
413
+ Mei Festival"}, "description":{"_content":"A festival in The Hague on May
414
+ 5th, which is Liberation Day in The Netherlands. \n\nIn this set you''ll be
415
+ able to view the following artists: Winne, Jurk and Mischu Laikah."}, "needs_interstitial":0,
416
+ "visibility_can_see_set":1, "count_views":"71", "count_comments":"0", "can_comment":1,
417
+ "date_create":"1273437402", "date_update":"1356165010"}, {"id":"72157623700320221",
418
+ "primary":"4507629959", "secret":"42bce98099", "server":"2726", "farm":3,
419
+ "photos":"23", "videos":0, "title":{"_content":"Val Thorens"}, "description":{"_content":"Most
420
+ of these shots were taken in Val Thorens, France with a Nikon D80."}, "needs_interstitial":0,
421
+ "visibility_can_see_set":1, "count_views":"89", "count_comments":"0", "can_comment":1,
422
+ "date_create":"1270915823", "date_update":"1356165010"}, {"id":"72157622678558767",
423
+ "primary":"4103218587", "secret":"4c8bdd07b5", "server":"2631", "farm":3,
424
+ "photos":"40", "videos":0, "title":{"_content":"Zoom Experience ''09"}, "description":{"_content":"Zoom
425
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
426
+ in Utrecht by the Zoom.nl magazine."}, "needs_interstitial":0, "visibility_can_see_set":1,
427
+ "count_views":"153", "count_comments":"0", "can_comment":1, "date_create":"1258229906",
428
+ "date_update":"1356165010"}, {"id":"72157622216400117", "primary":"3910073517",
429
+ "secret":"2ee8ba3d74", "server":"2631", "farm":3, "photos":"152", "videos":0,
430
+ "title":{"_content":"Rome"}, "description":{"_content":"Most of these shots
431
+ were taken in Rome, Italy with my Nikkor 50 mm f\/1.8. The others were taken
432
+ with the Nikkor 55-200 mm f\/4.0-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1,
433
+ "count_views":"108", "count_comments":"0", "can_comment":1, "date_create":"1252704238",
434
+ "date_update":"1356165011"}, {"id":"72157622251601466", "primary":"3889860224",
435
+ "secret":"9333bbc160", "server":"2435", "farm":3, "photos":"81", "videos":0,
436
+ "title":{"_content":"Rome (UWA)"}, "description":{"_content":"These shots
437
+ were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide Angle
438
+ lens, in Rome, Italy."}, "needs_interstitial":0, "visibility_can_see_set":1,
439
+ "count_views":"234", "count_comments":"0", "can_comment":1, "date_create":"1252152755",
440
+ "date_update":"1356165011"}, {"id":"72157622042947321", "primary":"3865054146",
441
+ "secret":"e5d907bd9a", "server":"2637", "farm":3, "photos":"27", "videos":0,
442
+ "title":{"_content":"Madurodam At Night"}, "description":{"_content":"These
443
+ shots were taken during the evening at Madurodam, Scheveningen. "}, "needs_interstitial":0,
444
+ "visibility_can_see_set":1, "count_views":"93", "count_comments":"0", "can_comment":1,
445
+ "date_create":"1251468756", "date_update":"1356165010"}, {"id":"72157622067739660",
446
+ "primary":"3843992302", "secret":"e0fc5eb971", "server":"2608", "farm":3,
447
+ "photos":"76", "videos":0, "title":{"_content":"Streetmasters ''09"}, "description":{"_content":"Streetmasters
448
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
449
+ breakdancers, streetdancers and streetsoccer players. As of the 2009 edition
450
+ there also is a freerunners dicipline."}, "needs_interstitial":0, "visibility_can_see_set":1,
451
+ "count_views":"137", "count_comments":"0", "can_comment":1, "date_create":"1250543322",
452
+ "date_update":"1356165011"}, {"id":"72157621986269708", "primary":"3802687475",
453
+ "secret":"7007c87d22", "server":"3493", "farm":4, "photos":"21", "videos":0,
454
+ "title":{"_content":"Fit For Free Dance Parade"}, "description":{"_content":"The
455
+ Fit For Free Dance Parade is a parade of trucks with DJ''s and dancers on
456
+ them, which goes straight through Rotterdam."}, "needs_interstitial":0, "visibility_can_see_set":1,
457
+ "count_views":"97", "count_comments":"0", "can_comment":1, "date_create":"1249803502",
458
+ "date_update":"1356165009"}, {"id":"72157621709918913", "primary":"3757528316",
459
+ "secret":"a20bd0c139", "server":"2610", "farm":3, "photos":"58", "videos":0,
460
+ "title":{"_content":"Zomer Carnaval ''09"}, "description":{"_content":"These
461
+ shots were taken at the Ortel Zomer Carnaval 2009 in Rotterdam. They were
462
+ al taken with my Nikon 50 mm f\/1.8D at the Coolsingel."}, "needs_interstitial":0,
463
+ "visibility_can_see_set":1, "count_views":"290", "count_comments":"0", "can_comment":1,
464
+ "date_create":"1248592969", "date_update":"1356165010"}, {"id":"72157621226409953",
465
+ "primary":"3713875609", "secret":"4b441bf691", "server":"3474", "farm":4,
466
+ "photos":"15", "videos":0, "title":{"_content":"North Sea Round Town"}, "description":{"_content":"North
467
+ Sea Round Town is the warming-up of the North Sea Jazz Festival in Rotterdam."},
468
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"124", "count_comments":"0",
469
+ "can_comment":1, "date_create":"1247436891", "date_update":"1356165010"},
470
+ {"id":"72157620266565933", "primary":"3654106253", "secret":"3b5eca01e6",
471
+ "server":"3394", "farm":4, "photos":"186", "videos":0, "title":{"_content":"New
472
+ York City"}, "description":{"_content":"These shots were taken with my Nikon
473
+ D80 and the Nikkor 50mm f\/1.8D in New York City, USA. Some of the shots were
474
+ taken with the Nikkor 55-200mm f\/4-5.6."}, "needs_interstitial":0, "visibility_can_see_set":1,
475
+ "count_views":"491", "count_comments":"0", "can_comment":1, "date_create":"1245782076",
476
+ "date_update":"1356165013"}, {"id":"72157619874753455", "primary":"3643159571",
477
+ "secret":"f7623d5eaf", "server":"3570", "farm":4, "photos":"133", "videos":0,
478
+ "title":{"_content":"New York City (UWA)"}, "description":{"_content":"These
479
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
480
+ Angle lens, in New York City, USA."}, "needs_interstitial":0, "visibility_can_see_set":1,
481
+ "count_views":"401", "count_comments":"0", "can_comment":1, "date_create":"1245423559",
482
+ "date_update":"1356165011"}, {"id":"72157618789715578", "primary":"3563736117",
483
+ "secret":"482e7889db", "server":"3656", "farm":4, "photos":"13", "videos":0,
484
+ "title":{"_content":"Antwerp"}, "description":{"_content":"Shots I''ve taken
485
+ in Antwerp."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"47",
486
+ "count_comments":"0", "can_comment":1, "date_create":"1243286961", "date_update":"1356165009"},
487
+ {"id":"72157617813232989", "primary":"3515445170", "secret":"468e074632",
488
+ "server":"3356", "farm":4, "photos":"3", "videos":0, "title":{"_content":"Night
489
+ At The Docks"}, "description":{"_content":"These shots were taken at the docks
490
+ of Rotterdam. We were standing near the Maas."}, "needs_interstitial":0, "visibility_can_see_set":1,
491
+ "count_views":"31", "count_comments":"0", "can_comment":1, "date_create":"1241870453",
492
+ "date_update":"1356165009"}, {"id":"72157611834597247", "primary":"3149804427",
493
+ "secret":"0b95ff03f7", "server":"3101", "farm":4, "photos":"20", "videos":0,
494
+ "title":{"_content":"Red Bull Knock Out"}, "description":{"_content":"The
495
+ Red Bull Knockout took place in Scheveningen, the Netherlands on November
496
+ 16th. These shots were taken there."}, "needs_interstitial":0, "visibility_can_see_set":1,
497
+ "count_views":"103", "count_comments":"0", "can_comment":1, "date_create":"1230641381",
498
+ "date_update":"1356165009"}, {"id":"72157608768338052", "primary":"3070765188",
499
+ "secret":"28b8fa5d38", "server":"3201", "farm":4, "photos":"35", "videos":0,
500
+ "title":{"_content":"Zoom Experience ''08"}, "description":{"_content":"Zoom
501
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
502
+ in Utrecht by the Zoom.nl magazine."}, "needs_interstitial":0, "visibility_can_see_set":1,
503
+ "count_views":"383", "count_comments":"0", "can_comment":1, "date_create":"1226182293",
504
+ "date_update":"1356165010"}, {"id":"72157607994521912", "primary":"2938539715",
505
+ "secret":"683e0092c3", "server":"3025", "farm":4, "photos":"12", "videos":0,
506
+ "title":{"_content":"100% Tuning"}, "description":{"_content":"100% Tuning
507
+ is the largest indoor tuning event in Holland. This year was the 5th edition
508
+ of 100% Tuning in Ahoy Rotterdam."}, "needs_interstitial":0, "visibility_can_see_set":1,
509
+ "count_views":"1169", "count_comments":"0", "can_comment":1, "date_create":"1223927875",
510
+ "date_update":"1356165009"}, {"id":"72157607752895562", "primary":"2914332291",
511
+ "secret":"fd4400f0dd", "server":"3248", "farm":4, "photos":"17", "videos":0,
512
+ "title":{"_content":"Training Feijenoord"}, "description":{"_content":"These
513
+ photos were taken on a saturday at De Kuip in Rotterdam. The selection of
514
+ Feijenoord 1 was training there at the moment."}, "needs_interstitial":0,
515
+ "visibility_can_see_set":1, "count_views":"101", "count_comments":"0", "can_comment":1,
516
+ "date_create":"1223214961", "date_update":"1356165012"}, {"id":"72157607757878689",
517
+ "primary":"2914105201", "secret":"ae046eb2ea", "server":"3090", "farm":4,
518
+ "photos":"15", "videos":0, "title":{"_content":"Rotterdam Road Races"}, "description":{"_content":"The
519
+ Rotterdam Road Races is an event with several races like the Fortis 1\/2 Marathon
520
+ Rotterdam, AD 10 Km Loop and Rotterdam on Wheels."}, "needs_interstitial":0,
521
+ "visibility_can_see_set":1, "count_views":"41", "count_comments":"0", "can_comment":1,
522
+ "date_create":"1223208582", "date_update":"1356165012"}, {"id":"72157607755852863",
523
+ "primary":"2914800312", "secret":"eac896c089", "server":"3197", "farm":4,
524
+ "photos":"19", "videos":0, "title":{"_content":"Streetmasters ''08"}, "description":{"_content":"Streetmasters
525
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
526
+ breakdancers and streetdancers. This was the finale at Westblaak in Rotterdam."},
527
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"61", "count_comments":"0",
528
+ "can_comment":1, "date_create":"1223203353", "date_update":"1356165012"},
529
+ {"id":"72157607733513100", "primary":"2912489161", "secret":"d2fb34f716",
530
+ "server":"3105", "farm":4, "photos":"24", "videos":0, "title":{"_content":"Diergaarde
531
+ Blijdorp"}, "description":{"_content":"Rotterdam Zoo: Diergaarde Blijdorp"},
532
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"67", "count_comments":"0",
533
+ "can_comment":1, "date_create":"1223156815", "date_update":"1356165012"},
534
+ {"id":"72157607758936165", "primary":"2914184769", "secret":"26ca769e6a",
535
+ "server":"3100", "farm":4, "photos":"23", "videos":0, "title":{"_content":"I
536
+ (heart) Threadless"}, "description":{"_content":"Photos from our so-called
537
+ &quot;I (heart) Threadless&quot; photoshoot for our profile on the Threadless
538
+ website. It took place under the Brienenoordbrug in Rotterdam."}, "needs_interstitial":0,
539
+ "visibility_can_see_set":1, "count_views":"65", "count_comments":"0", "can_comment":1,
540
+ "date_create":"1223211099", "date_update":"1356165013"}, {"id":"72157604876037835",
541
+ "primary":"3514636763", "secret":"f13062d9e4", "server":"3317", "farm":4,
542
+ "photos":"16", "videos":0, "title":{"_content":"Me, Myself & I"}, "description":{"_content":"The
543
+ title of this set says it all. These are obviously selfportrets or images
544
+ of me made by other people."}, "needs_interstitial":0, "visibility_can_see_set":1,
545
+ "count_views":"330", "count_comments":"0", "can_comment":1, "date_create":"1209896547",
546
+ "date_update":"1356165012"}, {"id":"72157613432665353", "primary":"3831523902",
547
+ "secret":"9cf20046e1", "server":"3534", "farm":4, "photos":"33", "videos":0,
548
+ "title":{"_content":"Portraits"}, "description":{"_content":"Portraits of
549
+ people."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"64",
550
+ "count_comments":"0", "can_comment":1, "date_create":"1233996281", "date_update":"1356165012"},
551
+ {"id":"72157607956377672", "primary":"2933987351", "secret":"22ce24ddf9",
552
+ "server":"3179", "farm":4, "photos":"21", "videos":0, "title":{"_content":"Egypt"},
553
+ "description":{"_content":"In August 2008 I went to Sharm El-Sheikh, Egypt
554
+ with my brother. We''ve also visited Cairo while we were there. All of these
555
+ were taken with my Fujifilm FinePix s9600 (which I''ve sold)."}, "needs_interstitial":0,
556
+ "visibility_can_see_set":1, "count_views":"86", "count_comments":"0", "can_comment":1,
557
+ "date_create":"1223824830", "date_update":"1356165012"}, {"id":"72157607747813484",
558
+ "primary":"2914660920", "secret":"577a301104", "server":"3190", "farm":4,
559
+ "photos":"11", "videos":0, "title":{"_content":"Wereld havendagen"}, "description":{"_content":"The
560
+ world harbor day is a large event in Rotterdam. It is meant to show what takes
561
+ place in Europe''s biggest port."}, "needs_interstitial":0, "visibility_can_see_set":1,
562
+ "count_views":"21", "count_comments":"0", "can_comment":1, "date_create":"1223197948",
563
+ "date_update":"1356165012"}, {"id":"72157608065768431", "primary":"3260304504",
564
+ "secret":"b566f0c1fa", "server":"3403", "farm":4, "photos":"8", "videos":0,
565
+ "title":{"_content":"Gadgets & Gear"}, "description":{"_content":"This set
566
+ contains photos from my gadgets, gear and other shots that fit this set."},
567
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"315", "count_comments":"0",
568
+ "can_comment":1, "date_create":"1224100790", "date_update":"1356165012"},
569
+ {"id":"72157602136210676", "primary":"2463323643", "secret":"49c99715da",
570
+ "server":"2393", "farm":3, "photos":"9", "videos":0, "title":{"_content":"Cars"},
571
+ "description":{"_content":"The photos in this set are of my cars. The first
572
+ are from my Honda Civic 1.5 LSi ''93, which I''ve sold in the meanwhile. The
573
+ other photos are from my BMW 316i Compact from ''98, which I currently own."},
574
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"154", "count_comments":"0",
575
+ "can_comment":1, "date_create":"1190657188", "date_update":"1356165012"},
576
+ {"id":"72157609118757238", "primary":"2979327772", "secret":"1709ca8191",
577
+ "server":"3048", "farm":4, "photos":"101", "videos":0, "title":{"_content":"Bokeh"},
578
+ "description":{"_content":"Photographs that I''ve taken with out-of-focus
579
+ areas in it produced by a shallow depth of field."}, "needs_interstitial":0,
580
+ "visibility_can_see_set":1, "count_views":"79", "count_comments":"0", "can_comment":1,
581
+ "date_create":"1226764945", "date_update":"1356165012"}, {"id":"72157608164792364",
582
+ "primary":"2955114833", "secret":"7322751b77", "server":"3029", "farm":4,
583
+ "photos":"26", "videos":0, "title":{"_content":"Selective Colors"}, "description":{"_content":"This
584
+ set contains photos that are mainly black and white with a selective color."},
585
+ "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"46", "count_comments":"0",
586
+ "can_comment":1, "date_create":"1224414579", "date_update":"1356165012"},
587
+ {"id":"72157608177901148", "primary":"3643167761", "secret":"32da16b737",
588
+ "server":"2465", "farm":3, "photos":"208", "videos":0, "title":{"_content":"Black
589
+ & White"}, "description":{"_content":"The title of this set is pretty self
590
+ explanatory, but just to make it more clear... it contains black and white
591
+ photographs."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"43",
592
+ "count_comments":"0", "can_comment":1, "date_create":"1224448207", "date_update":"1356165013"},
593
+ {"id":"72157609130124623", "primary":"3031746973", "secret":"179aa08c2e",
594
+ "server":"3294", "farm":4, "photos":"8", "videos":0, "title":{"_content":"Product
595
+ Photography"}, "description":{"_content":""}, "needs_interstitial":0, "visibility_can_see_set":1,
596
+ "count_views":"35", "count_comments":"0", "can_comment":1, "date_create":"1226763941",
597
+ "date_update":"1356165012"}, {"id":"72157600303479345", "primary":"2464410072",
598
+ "secret":"99a2e64e3e", "server":"2272", "farm":3, "photos":"7", "videos":0,
599
+ "title":{"_content":"Nature"}, "description":{"_content":"Flora, fauna and
600
+ landscapes."}, "needs_interstitial":0, "visibility_can_see_set":1, "count_views":"54",
601
+ "count_comments":"0", "can_comment":1, "date_create":"1180873266", "date_update":"1356165017"}]},
602
+ "stat":"ok"}'
603
+ http_version:
604
+ recorded_at: Wed, 16 Apr 2014 07:14:33 GMT
605
+ - request:
606
+ method: post
607
+ uri: https://api.flickr.com/services/rest/
608
+ body:
609
+ encoding: US-ASCII
610
+ string: photoset_id=72157632367381040&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
611
+ headers:
612
+ Accept-Encoding:
613
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
614
+ Accept:
615
+ - '*/*'
616
+ User-Agent:
617
+ - FlickRaw/0.9.8
618
+ Authorization:
619
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
620
+ oauth_nonce="AqzU6lsyvJSCGwbRzIihQ0OCCIrEtoFTE1b561BL4f8%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
621
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632473", oauth_token="<KUVA_ACCESS_TOKEN>",
622
+ oauth_version="1.0"
623
+ Content-Type:
624
+ - application/x-www-form-urlencoded
625
+ response:
626
+ status:
627
+ code: 200
628
+ message: OK
629
+ headers:
630
+ Date:
631
+ - Wed, 16 Apr 2014 07:14:33 GMT
632
+ P3p:
633
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
634
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
635
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
636
+ Cache-Control:
637
+ - private
638
+ X-Served-By:
639
+ - www299.flickr.bf1.yahoo.com
640
+ Vary:
641
+ - Accept-Encoding
642
+ Content-Length:
643
+ - '364'
644
+ Content-Type:
645
+ - application/json
646
+ Age:
647
+ - '3'
648
+ Via:
649
+ - http/1.1 fts113.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
650
+ http/1.1 r10.ycpi.dee.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
651
+ Server:
652
+ - ATS
653
+ Connection:
654
+ - keep-alive
655
+ body:
656
+ encoding: UTF-8
657
+ string: '{"photoset":{"id":"72157632367381040", "owner":"8558751@N06", "username":"ktnl",
658
+ "primary":"8318972536", "secret":"eda82f692f", "server":"8499", "farm":9,
659
+ "photos":28, "count_views":"31", "count_comments":"0", "count_photos":"28",
660
+ "count_videos":0, "title":{"_content":"Paris"}, "description":{"_content":"These
661
+ shots were taken in Paris, France in December 2012. Most of them are taken
662
+ with my Nikon D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "can_comment":1,
663
+ "date_create":"1356715289", "date_update":"1356717162", "coverphoto_server":"0",
664
+ "coverphoto_farm":0}, "stat":"ok"}'
665
+ http_version:
666
+ recorded_at: Wed, 16 Apr 2014 07:14:34 GMT
667
+ - request:
668
+ method: post
669
+ uri: https://api.flickr.com/services/rest/
670
+ body:
671
+ encoding: US-ASCII
672
+ string: photoset_id=72157632303248759&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
673
+ headers:
674
+ Accept-Encoding:
675
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
676
+ Accept:
677
+ - '*/*'
678
+ User-Agent:
679
+ - FlickRaw/0.9.8
680
+ Authorization:
681
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
682
+ oauth_nonce="7C0Lmc8Rzw9oP71tikIDtDLKGeFqfWbsTJRFwa0y9bo%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
683
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632474", oauth_token="<KUVA_ACCESS_TOKEN>",
684
+ oauth_version="1.0"
685
+ Content-Type:
686
+ - application/x-www-form-urlencoded
687
+ response:
688
+ status:
689
+ code: 200
690
+ message: OK
691
+ headers:
692
+ Date:
693
+ - Wed, 16 Apr 2014 07:14:34 GMT
694
+ P3p:
695
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
696
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
697
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
698
+ Cache-Control:
699
+ - private
700
+ X-Served-By:
701
+ - www29.flickr.bf1.yahoo.com
702
+ Vary:
703
+ - Accept-Encoding
704
+ Content-Length:
705
+ - '354'
706
+ Content-Type:
707
+ - application/json
708
+ Age:
709
+ - '0'
710
+ Via:
711
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
712
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
713
+ Server:
714
+ - ATS
715
+ Connection:
716
+ - keep-alive
717
+ body:
718
+ encoding: UTF-8
719
+ string: '{"photoset":{"id":"72157632303248759", "owner":"8558751@N06", "username":"ktnl",
720
+ "primary":"8294626229", "secret":"7b8aaeab2b", "server":"8081", "farm":9,
721
+ "photos":69, "count_views":"21", "count_comments":"0", "count_photos":"69",
722
+ "count_videos":0, "title":{"_content":"Bali"}, "description":{"_content":"These
723
+ shots were taken on Bali in May 2012. Most of them are taken with my Nikon
724
+ D80 and Nikkor 50mm f\/1.8 or Tokina 12-24mm f\/4."}, "can_comment":1, "date_create":"1356131625",
725
+ "date_update":"1356189559", "coverphoto_server":"0", "coverphoto_farm":0},
726
+ "stat":"ok"}'
727
+ http_version:
728
+ recorded_at: Wed, 16 Apr 2014 07:14:34 GMT
729
+ - request:
730
+ method: post
731
+ uri: https://api.flickr.com/services/rest/
732
+ body:
733
+ encoding: US-ASCII
734
+ string: photoset_id=72157629017578067&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
735
+ headers:
736
+ Accept-Encoding:
737
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
738
+ Accept:
739
+ - '*/*'
740
+ User-Agent:
741
+ - FlickRaw/0.9.8
742
+ Authorization:
743
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
744
+ oauth_nonce="ENK8FMhSkPSzFgS5TI7WbbrmBBsze6WF7EPM8SFL1lM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
745
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632474", oauth_token="<KUVA_ACCESS_TOKEN>",
746
+ oauth_version="1.0"
747
+ Content-Type:
748
+ - application/x-www-form-urlencoded
749
+ response:
750
+ status:
751
+ code: 200
752
+ message: OK
753
+ headers:
754
+ Date:
755
+ - Wed, 16 Apr 2014 07:14:34 GMT
756
+ P3p:
757
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
758
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
759
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
760
+ Cache-Control:
761
+ - private
762
+ X-Served-By:
763
+ - www326.flickr.bf1.yahoo.com
764
+ Vary:
765
+ - Accept-Encoding
766
+ Content-Length:
767
+ - '405'
768
+ Content-Type:
769
+ - application/json
770
+ Age:
771
+ - '3'
772
+ Via:
773
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
774
+ http/1.1 r08.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
775
+ Server:
776
+ - ATS
777
+ Connection:
778
+ - keep-alive
779
+ body:
780
+ encoding: UTF-8
781
+ string: '{"photoset":{"id":"72157629017578067", "owner":"8558751@N06", "username":"ktnl",
782
+ "primary":"6757041485", "secret":"643ba72439", "server":"7163", "farm":8,
783
+ "photos":69, "count_views":"73", "count_comments":"4", "count_photos":"69",
784
+ "count_videos":0, "title":{"_content":"Aruba"}, "description":{"_content":"These
785
+ shots were taken on Aruba (One Happy Island) in March 2011. Most of them are
786
+ taken with my Nikon D80 and Tokina 12-24mm f\/4.\n\nObviously it''s Aruba
787
+ from a different point of view."}, "can_comment":1, "date_create":"1327442512",
788
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
789
+ "stat":"ok"}'
790
+ http_version:
791
+ recorded_at: Wed, 16 Apr 2014 07:14:35 GMT
792
+ - request:
793
+ method: post
794
+ uri: https://api.flickr.com/services/rest/
795
+ body:
796
+ encoding: US-ASCII
797
+ string: photoset_id=72157628378160739&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
798
+ headers:
799
+ Accept-Encoding:
800
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
801
+ Accept:
802
+ - '*/*'
803
+ User-Agent:
804
+ - FlickRaw/0.9.8
805
+ Authorization:
806
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
807
+ oauth_nonce="L8qZn9U%2FH1SE63KCQwylVUfvUmrMCF8tJUjv4Chgw9w%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
808
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632475", oauth_token="<KUVA_ACCESS_TOKEN>",
809
+ oauth_version="1.0"
810
+ Content-Type:
811
+ - application/x-www-form-urlencoded
812
+ response:
813
+ status:
814
+ code: 200
815
+ message: OK
816
+ headers:
817
+ Date:
818
+ - Wed, 16 Apr 2014 07:14:35 GMT
819
+ P3p:
820
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
821
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
822
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
823
+ Cache-Control:
824
+ - private
825
+ X-Served-By:
826
+ - www4.flickr.bf1.yahoo.com
827
+ Vary:
828
+ - Accept-Encoding
829
+ Content-Length:
830
+ - '344'
831
+ Content-Type:
832
+ - application/json
833
+ Age:
834
+ - '0'
835
+ Via:
836
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
837
+ http/1.1 r23.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
838
+ Server:
839
+ - ATS
840
+ Connection:
841
+ - keep-alive
842
+ body:
843
+ encoding: UTF-8
844
+ string: '{"photoset":{"id":"72157628378160739", "owner":"8558751@N06", "username":"ktnl",
845
+ "primary":"6495153913", "secret":"1ba1b324ef", "server":"7145", "farm":8,
846
+ "photos":51, "count_views":"89", "count_comments":"0", "count_photos":"51",
847
+ "count_videos":0, "title":{"_content":"Carnaval di Aruba ''11"}, "description":{"_content":"These
848
+ shots were taken in and around Oranjestad, Aruba during the Carnival in March
849
+ 2011."}, "can_comment":1, "date_create":"1323640679", "date_update":"1356165010",
850
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
851
+ http_version:
852
+ recorded_at: Wed, 16 Apr 2014 07:14:36 GMT
853
+ - request:
854
+ method: post
855
+ uri: https://api.flickr.com/services/rest/
856
+ body:
857
+ encoding: US-ASCII
858
+ string: photoset_id=72157625433863013&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
859
+ headers:
860
+ Accept-Encoding:
861
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
862
+ Accept:
863
+ - '*/*'
864
+ User-Agent:
865
+ - FlickRaw/0.9.8
866
+ Authorization:
867
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
868
+ oauth_nonce="%2BVgRAtSPyEZcax4UndM7leGkXeo1HpO4U2HIYXAQxoU%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
869
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632476", oauth_token="<KUVA_ACCESS_TOKEN>",
870
+ oauth_version="1.0"
871
+ Content-Type:
872
+ - application/x-www-form-urlencoded
873
+ response:
874
+ status:
875
+ code: 200
876
+ message: OK
877
+ headers:
878
+ Date:
879
+ - Wed, 16 Apr 2014 07:14:36 GMT
880
+ P3p:
881
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
882
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
883
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
884
+ Cache-Control:
885
+ - private
886
+ X-Served-By:
887
+ - www42.flickr.bf1.yahoo.com
888
+ Vary:
889
+ - Accept-Encoding
890
+ Content-Length:
891
+ - '356'
892
+ Content-Type:
893
+ - application/json
894
+ Age:
895
+ - '0'
896
+ Via:
897
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
898
+ http/1.1 r13.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
899
+ Server:
900
+ - ATS
901
+ Connection:
902
+ - keep-alive
903
+ body:
904
+ encoding: UTF-8
905
+ string: '{"photoset":{"id":"72157625433863013", "owner":"8558751@N06", "username":"ktnl",
906
+ "primary":"5245419190", "secret":"54cdd111fd", "server":"5282", "farm":6,
907
+ "photos":10, "count_views":"123", "count_comments":"0", "count_photos":"10",
908
+ "count_videos":0, "title":{"_content":"Zoom Experience ''10"}, "description":{"_content":"These
909
+ shots were taken at the Zoom Experience 2010 in the Jaarbeurs, Utrecht. They
910
+ all feature the model Suraya."}, "can_comment":1, "date_create":"1291854812",
911
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
912
+ "stat":"ok"}'
913
+ http_version:
914
+ recorded_at: Wed, 16 Apr 2014 07:14:36 GMT
915
+ - request:
916
+ method: post
917
+ uri: https://api.flickr.com/services/rest/
918
+ body:
919
+ encoding: US-ASCII
920
+ string: photoset_id=72157625523500610&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
921
+ headers:
922
+ Accept-Encoding:
923
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
924
+ Accept:
925
+ - '*/*'
926
+ User-Agent:
927
+ - FlickRaw/0.9.8
928
+ Authorization:
929
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
930
+ oauth_nonce="qEcNG%2B8YykmwYwKT34aPH9m5NCqpVgD6VWq1YcAxuY8%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
931
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632476", oauth_token="<KUVA_ACCESS_TOKEN>",
932
+ oauth_version="1.0"
933
+ Content-Type:
934
+ - application/x-www-form-urlencoded
935
+ response:
936
+ status:
937
+ code: 200
938
+ message: OK
939
+ headers:
940
+ Date:
941
+ - Wed, 16 Apr 2014 07:14:36 GMT
942
+ P3p:
943
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
944
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
945
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
946
+ Cache-Control:
947
+ - private
948
+ X-Served-By:
949
+ - www270.flickr.bf1.yahoo.com
950
+ Vary:
951
+ - Accept-Encoding
952
+ Content-Length:
953
+ - '382'
954
+ Content-Type:
955
+ - application/json
956
+ Age:
957
+ - '0'
958
+ Via:
959
+ - http/1.1 fts115.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
960
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
961
+ Server:
962
+ - ATS
963
+ Connection:
964
+ - keep-alive
965
+ body:
966
+ encoding: UTF-8
967
+ string: '{"photoset":{"id":"72157625523500610", "owner":"8558751@N06", "username":"ktnl",
968
+ "primary":"5230378378", "secret":"fecddda258", "server":"5242", "farm":6,
969
+ "photos":30, "count_views":"47", "count_comments":"0", "count_photos":"30",
970
+ "count_videos":0, "title":{"_content":"The Hague"}, "description":{"_content":"These
971
+ shots were taken on a sunny afternoon in the centre of The Hague, The Netherlands.
972
+ Most of them have been taken in or around the Binnenhof, where the Dutch parliament
973
+ resides."}, "can_comment":1, "date_create":"1291422677", "date_update":"1356165010",
974
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
975
+ http_version:
976
+ recorded_at: Wed, 16 Apr 2014 07:14:36 GMT
977
+ - request:
978
+ method: post
979
+ uri: https://api.flickr.com/services/rest/
980
+ body:
981
+ encoding: US-ASCII
982
+ string: photoset_id=72157624624572356&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
983
+ headers:
984
+ Accept-Encoding:
985
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
986
+ Accept:
987
+ - '*/*'
988
+ User-Agent:
989
+ - FlickRaw/0.9.8
990
+ Authorization:
991
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
992
+ oauth_nonce="%2F5ZeebEwoMNv3nS%2BkMhH7%2FzOTc%2BkZA22xXOBi1P3MYk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
993
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632476", oauth_token="<KUVA_ACCESS_TOKEN>",
994
+ oauth_version="1.0"
995
+ Content-Type:
996
+ - application/x-www-form-urlencoded
997
+ response:
998
+ status:
999
+ code: 200
1000
+ message: OK
1001
+ headers:
1002
+ Date:
1003
+ - Wed, 16 Apr 2014 07:14:37 GMT
1004
+ P3p:
1005
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1006
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1007
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1008
+ Cache-Control:
1009
+ - private
1010
+ X-Served-By:
1011
+ - www245.flickr.bf1.yahoo.com
1012
+ Vary:
1013
+ - Accept-Encoding
1014
+ Content-Length:
1015
+ - '392'
1016
+ Content-Type:
1017
+ - application/json
1018
+ Age:
1019
+ - '0'
1020
+ Via:
1021
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1022
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1023
+ Server:
1024
+ - ATS
1025
+ Connection:
1026
+ - keep-alive
1027
+ body:
1028
+ encoding: UTF-8
1029
+ string: '{"photoset":{"id":"72157624624572356", "owner":"8558751@N06", "username":"ktnl",
1030
+ "primary":"4847033367", "secret":"f455849b72", "server":"4146", "farm":5,
1031
+ "photos":57, "count_views":"266", "count_comments":"0", "count_photos":"57",
1032
+ "count_videos":0, "title":{"_content":"Zomer Carnaval ''10"}, "description":{"_content":"These
1033
+ shots were taken at the Ortel Zomer Carnaval 2010 in Rotterdam. Most of them
1034
+ were taken with my Nikon 50 mm f\/1.8D at Leuvehaven and some of them were
1035
+ taken with my Nikon 70-300mm f4.5-5.6."}, "can_comment":1, "date_create":"1280613448",
1036
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1037
+ "stat":"ok"}'
1038
+ http_version:
1039
+ recorded_at: Wed, 16 Apr 2014 07:14:37 GMT
1040
+ - request:
1041
+ method: post
1042
+ uri: https://api.flickr.com/services/rest/
1043
+ body:
1044
+ encoding: US-ASCII
1045
+ string: photoset_id=72157623902001333&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1046
+ headers:
1047
+ Accept-Encoding:
1048
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1049
+ Accept:
1050
+ - '*/*'
1051
+ User-Agent:
1052
+ - FlickRaw/0.9.8
1053
+ Authorization:
1054
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1055
+ oauth_nonce="2oSOLUHHV69CVdJGBngKib6BRzoLJLD6NMDUqz%2F6vL0%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1056
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632477", oauth_token="<KUVA_ACCESS_TOKEN>",
1057
+ oauth_version="1.0"
1058
+ Content-Type:
1059
+ - application/x-www-form-urlencoded
1060
+ response:
1061
+ status:
1062
+ code: 200
1063
+ message: OK
1064
+ headers:
1065
+ Date:
1066
+ - Wed, 16 Apr 2014 07:14:37 GMT
1067
+ P3p:
1068
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1069
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1070
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1071
+ Cache-Control:
1072
+ - private
1073
+ X-Served-By:
1074
+ - www271.flickr.bf1.yahoo.com
1075
+ Vary:
1076
+ - Accept-Encoding
1077
+ Content-Length:
1078
+ - '401'
1079
+ Content-Type:
1080
+ - application/json
1081
+ Age:
1082
+ - '0'
1083
+ Via:
1084
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1085
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1086
+ Server:
1087
+ - ATS
1088
+ Connection:
1089
+ - keep-alive
1090
+ body:
1091
+ encoding: UTF-8
1092
+ string: '{"photoset":{"id":"72157623902001333", "owner":"8558751@N06", "username":"ktnl",
1093
+ "primary":"4593271974", "secret":"d2482de61a", "server":"3544", "farm":4,
1094
+ "photos":47, "count_views":"71", "count_comments":"0", "count_photos":"47",
1095
+ "count_videos":0, "title":{"_content":"5 Mei Festival"}, "description":{"_content":"A
1096
+ festival in The Hague on May 5th, which is Liberation Day in The Netherlands.
1097
+ \n\nIn this set you''ll be able to view the following artists: Winne, Jurk
1098
+ and Mischu Laikah."}, "can_comment":1, "date_create":"1273437402", "date_update":"1356165010",
1099
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
1100
+ http_version:
1101
+ recorded_at: Wed, 16 Apr 2014 07:14:37 GMT
1102
+ - request:
1103
+ method: post
1104
+ uri: https://api.flickr.com/services/rest/
1105
+ body:
1106
+ encoding: US-ASCII
1107
+ string: photoset_id=72157623700320221&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1108
+ headers:
1109
+ Accept-Encoding:
1110
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1111
+ Accept:
1112
+ - '*/*'
1113
+ User-Agent:
1114
+ - FlickRaw/0.9.8
1115
+ Authorization:
1116
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1117
+ oauth_nonce="5QzSsYGtC6kh1wHGpDYtxZJLm6ajOfmRxPL9S1slKpI%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1118
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632477", oauth_token="<KUVA_ACCESS_TOKEN>",
1119
+ oauth_version="1.0"
1120
+ Content-Type:
1121
+ - application/x-www-form-urlencoded
1122
+ response:
1123
+ status:
1124
+ code: 200
1125
+ message: OK
1126
+ headers:
1127
+ Date:
1128
+ - Wed, 16 Apr 2014 07:14:37 GMT
1129
+ P3p:
1130
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1131
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1132
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1133
+ Cache-Control:
1134
+ - private
1135
+ X-Served-By:
1136
+ - www46.flickr.bf1.yahoo.com
1137
+ Vary:
1138
+ - Accept-Encoding
1139
+ Content-Length:
1140
+ - '322'
1141
+ Content-Type:
1142
+ - application/json
1143
+ Age:
1144
+ - '3'
1145
+ Via:
1146
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1147
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1148
+ Server:
1149
+ - ATS
1150
+ Connection:
1151
+ - keep-alive
1152
+ body:
1153
+ encoding: UTF-8
1154
+ string: '{"photoset":{"id":"72157623700320221", "owner":"8558751@N06", "username":"ktnl",
1155
+ "primary":"4507629959", "secret":"42bce98099", "server":"2726", "farm":3,
1156
+ "photos":23, "count_views":"89", "count_comments":"0", "count_photos":"23",
1157
+ "count_videos":0, "title":{"_content":"Val Thorens"}, "description":{"_content":"Most
1158
+ of these shots were taken in Val Thorens, France with a Nikon D80."}, "can_comment":1,
1159
+ "date_create":"1270915823", "date_update":"1356165010", "coverphoto_server":"0",
1160
+ "coverphoto_farm":0}, "stat":"ok"}'
1161
+ http_version:
1162
+ recorded_at: Wed, 16 Apr 2014 07:14:38 GMT
1163
+ - request:
1164
+ method: post
1165
+ uri: https://api.flickr.com/services/rest/
1166
+ body:
1167
+ encoding: US-ASCII
1168
+ string: photoset_id=72157622678558767&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1169
+ headers:
1170
+ Accept-Encoding:
1171
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1172
+ Accept:
1173
+ - '*/*'
1174
+ User-Agent:
1175
+ - FlickRaw/0.9.8
1176
+ Authorization:
1177
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1178
+ oauth_nonce="o7s3pSpLF95sd4kXdEuWcjcm0hMKuL14gaElyZCiYsw%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1179
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632478", oauth_token="<KUVA_ACCESS_TOKEN>",
1180
+ oauth_version="1.0"
1181
+ Content-Type:
1182
+ - application/x-www-form-urlencoded
1183
+ response:
1184
+ status:
1185
+ code: 200
1186
+ message: OK
1187
+ headers:
1188
+ Date:
1189
+ - Wed, 16 Apr 2014 07:14:38 GMT
1190
+ P3p:
1191
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1192
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1193
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1194
+ Cache-Control:
1195
+ - private
1196
+ X-Served-By:
1197
+ - www70.flickr.bf1.yahoo.com
1198
+ Vary:
1199
+ - Accept-Encoding
1200
+ Content-Length:
1201
+ - '353'
1202
+ Content-Type:
1203
+ - application/json
1204
+ Age:
1205
+ - '3'
1206
+ Via:
1207
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1208
+ http/1.1 r13.ycpi.ir2.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1209
+ Server:
1210
+ - ATS
1211
+ Connection:
1212
+ - keep-alive
1213
+ body:
1214
+ encoding: UTF-8
1215
+ string: '{"photoset":{"id":"72157622678558767", "owner":"8558751@N06", "username":"ktnl",
1216
+ "primary":"4103218587", "secret":"4c8bdd07b5", "server":"2631", "farm":3,
1217
+ "photos":40, "count_views":"153", "count_comments":"0", "count_photos":"40",
1218
+ "count_videos":0, "title":{"_content":"Zoom Experience ''09"}, "description":{"_content":"Zoom
1219
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
1220
+ in Utrecht by the Zoom.nl magazine."}, "can_comment":1, "date_create":"1258229906",
1221
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
1222
+ "stat":"ok"}'
1223
+ http_version:
1224
+ recorded_at: Wed, 16 Apr 2014 07:14:39 GMT
1225
+ - request:
1226
+ method: post
1227
+ uri: https://api.flickr.com/services/rest/
1228
+ body:
1229
+ encoding: US-ASCII
1230
+ string: photoset_id=72157622216400117&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1231
+ headers:
1232
+ Accept-Encoding:
1233
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1234
+ Accept:
1235
+ - '*/*'
1236
+ User-Agent:
1237
+ - FlickRaw/0.9.8
1238
+ Authorization:
1239
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1240
+ oauth_nonce="CscIeK%2F0CghX4mXfR93jKe6b11rz%2F4mR86qqdoAIb%2Bc%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1241
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632479", oauth_token="<KUVA_ACCESS_TOKEN>",
1242
+ oauth_version="1.0"
1243
+ Content-Type:
1244
+ - application/x-www-form-urlencoded
1245
+ response:
1246
+ status:
1247
+ code: 200
1248
+ message: OK
1249
+ headers:
1250
+ Date:
1251
+ - Wed, 16 Apr 2014 07:14:39 GMT
1252
+ P3p:
1253
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1254
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1255
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1256
+ Cache-Control:
1257
+ - private
1258
+ X-Served-By:
1259
+ - www307.flickr.bf1.yahoo.com
1260
+ Vary:
1261
+ - Accept-Encoding
1262
+ Content-Length:
1263
+ - '354'
1264
+ Content-Type:
1265
+ - application/json
1266
+ Age:
1267
+ - '2'
1268
+ Via:
1269
+ - http/1.1 fts113.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1270
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1271
+ Server:
1272
+ - ATS
1273
+ Connection:
1274
+ - keep-alive
1275
+ body:
1276
+ encoding: UTF-8
1277
+ string: '{"photoset":{"id":"72157622216400117", "owner":"8558751@N06", "username":"ktnl",
1278
+ "primary":"3910073517", "secret":"2ee8ba3d74", "server":"2631", "farm":3,
1279
+ "photos":152, "count_views":"108", "count_comments":"0", "count_photos":"152",
1280
+ "count_videos":0, "title":{"_content":"Rome"}, "description":{"_content":"Most
1281
+ of these shots were taken in Rome, Italy with my Nikkor 50 mm f\/1.8. The
1282
+ others were taken with the Nikkor 55-200 mm f\/4.0-5.6."}, "can_comment":1,
1283
+ "date_create":"1252704238", "date_update":"1356165011", "coverphoto_server":"0",
1284
+ "coverphoto_farm":0}, "stat":"ok"}'
1285
+ http_version:
1286
+ recorded_at: Wed, 16 Apr 2014 07:14:40 GMT
1287
+ - request:
1288
+ method: post
1289
+ uri: https://api.flickr.com/services/rest/
1290
+ body:
1291
+ encoding: US-ASCII
1292
+ string: photoset_id=72157622251601466&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1293
+ headers:
1294
+ Accept-Encoding:
1295
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1296
+ Accept:
1297
+ - '*/*'
1298
+ User-Agent:
1299
+ - FlickRaw/0.9.8
1300
+ Authorization:
1301
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1302
+ oauth_nonce="9BF1uNWqiIa0rsY00f3jFJgOZPA29wrm42gUstqk4zc%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1303
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632480", oauth_token="<KUVA_ACCESS_TOKEN>",
1304
+ oauth_version="1.0"
1305
+ Content-Type:
1306
+ - application/x-www-form-urlencoded
1307
+ response:
1308
+ status:
1309
+ code: 200
1310
+ message: OK
1311
+ headers:
1312
+ Date:
1313
+ - Wed, 16 Apr 2014 07:14:40 GMT
1314
+ P3p:
1315
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1316
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1317
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1318
+ Cache-Control:
1319
+ - private
1320
+ X-Served-By:
1321
+ - www30.flickr.bf1.yahoo.com
1322
+ Vary:
1323
+ - Accept-Encoding
1324
+ Content-Length:
1325
+ - '366'
1326
+ Content-Type:
1327
+ - application/json
1328
+ Age:
1329
+ - '0'
1330
+ Via:
1331
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1332
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1333
+ Server:
1334
+ - ATS
1335
+ Connection:
1336
+ - keep-alive
1337
+ body:
1338
+ encoding: UTF-8
1339
+ string: '{"photoset":{"id":"72157622251601466", "owner":"8558751@N06", "username":"ktnl",
1340
+ "primary":"3889860224", "secret":"9333bbc160", "server":"2435", "farm":3,
1341
+ "photos":81, "count_views":"234", "count_comments":"0", "count_photos":"81",
1342
+ "count_videos":0, "title":{"_content":"Rome (UWA)"}, "description":{"_content":"These
1343
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
1344
+ Angle lens, in Rome, Italy."}, "can_comment":1, "date_create":"1252152755",
1345
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1346
+ "stat":"ok"}'
1347
+ http_version:
1348
+ recorded_at: Wed, 16 Apr 2014 07:14:40 GMT
1349
+ - request:
1350
+ method: post
1351
+ uri: https://api.flickr.com/services/rest/
1352
+ body:
1353
+ encoding: US-ASCII
1354
+ string: photoset_id=72157622042947321&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1355
+ headers:
1356
+ Accept-Encoding:
1357
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1358
+ Accept:
1359
+ - '*/*'
1360
+ User-Agent:
1361
+ - FlickRaw/0.9.8
1362
+ Authorization:
1363
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1364
+ oauth_nonce="wx2%2BdNBTa9FKmlu0tvHci1SLGoeI4rwjZcEdtuia5QM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1365
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632480", oauth_token="<KUVA_ACCESS_TOKEN>",
1366
+ oauth_version="1.0"
1367
+ Content-Type:
1368
+ - application/x-www-form-urlencoded
1369
+ response:
1370
+ status:
1371
+ code: 200
1372
+ message: OK
1373
+ headers:
1374
+ Date:
1375
+ - Wed, 16 Apr 2014 07:14:40 GMT
1376
+ P3p:
1377
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1378
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1379
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1380
+ Cache-Control:
1381
+ - private
1382
+ X-Served-By:
1383
+ - www65.flickr.bf1.yahoo.com
1384
+ Vary:
1385
+ - Accept-Encoding
1386
+ Content-Length:
1387
+ - '323'
1388
+ Content-Type:
1389
+ - application/json
1390
+ Age:
1391
+ - '0'
1392
+ Via:
1393
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1394
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1395
+ Server:
1396
+ - ATS
1397
+ Connection:
1398
+ - keep-alive
1399
+ body:
1400
+ encoding: UTF-8
1401
+ string: '{"photoset":{"id":"72157622042947321", "owner":"8558751@N06", "username":"ktnl",
1402
+ "primary":"3865054146", "secret":"e5d907bd9a", "server":"2637", "farm":3,
1403
+ "photos":27, "count_views":"93", "count_comments":"0", "count_photos":"27",
1404
+ "count_videos":0, "title":{"_content":"Madurodam At Night"}, "description":{"_content":"These
1405
+ shots were taken during the evening at Madurodam, Scheveningen. "}, "can_comment":1,
1406
+ "date_create":"1251468756", "date_update":"1356165010", "coverphoto_server":"0",
1407
+ "coverphoto_farm":0}, "stat":"ok"}'
1408
+ http_version:
1409
+ recorded_at: Wed, 16 Apr 2014 07:14:40 GMT
1410
+ - request:
1411
+ method: post
1412
+ uri: https://api.flickr.com/services/rest/
1413
+ body:
1414
+ encoding: US-ASCII
1415
+ string: photoset_id=72157622067739660&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1416
+ headers:
1417
+ Accept-Encoding:
1418
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1419
+ Accept:
1420
+ - '*/*'
1421
+ User-Agent:
1422
+ - FlickRaw/0.9.8
1423
+ Authorization:
1424
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1425
+ oauth_nonce="m8E%2BX6CRocdms7u5cPsiIW0gxDa%2FgDU1FXdG%2FkEPYRk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1426
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632480", oauth_token="<KUVA_ACCESS_TOKEN>",
1427
+ oauth_version="1.0"
1428
+ Content-Type:
1429
+ - application/x-www-form-urlencoded
1430
+ response:
1431
+ status:
1432
+ code: 200
1433
+ message: OK
1434
+ headers:
1435
+ Date:
1436
+ - Wed, 16 Apr 2014 07:14:40 GMT
1437
+ P3p:
1438
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1439
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1440
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1441
+ Cache-Control:
1442
+ - private
1443
+ X-Served-By:
1444
+ - www58.flickr.bf1.yahoo.com
1445
+ Vary:
1446
+ - Accept-Encoding
1447
+ Content-Length:
1448
+ - '397'
1449
+ Content-Type:
1450
+ - application/json
1451
+ Age:
1452
+ - '0'
1453
+ Via:
1454
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1455
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1456
+ Server:
1457
+ - ATS
1458
+ Connection:
1459
+ - keep-alive
1460
+ body:
1461
+ encoding: UTF-8
1462
+ string: '{"photoset":{"id":"72157622067739660", "owner":"8558751@N06", "username":"ktnl",
1463
+ "primary":"3843992302", "secret":"e0fc5eb971", "server":"2608", "farm":3,
1464
+ "photos":76, "count_views":"137", "count_comments":"0", "count_photos":"76",
1465
+ "count_videos":0, "title":{"_content":"Streetmasters ''09"}, "description":{"_content":"Streetmasters
1466
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
1467
+ breakdancers, streetdancers and streetsoccer players. As of the 2009 edition
1468
+ there also is a freerunners dicipline."}, "can_comment":1, "date_create":"1250543322",
1469
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1470
+ "stat":"ok"}'
1471
+ http_version:
1472
+ recorded_at: Wed, 16 Apr 2014 07:14:40 GMT
1473
+ - request:
1474
+ method: post
1475
+ uri: https://api.flickr.com/services/rest/
1476
+ body:
1477
+ encoding: US-ASCII
1478
+ string: photoset_id=72157621986269708&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1479
+ headers:
1480
+ Accept-Encoding:
1481
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1482
+ Accept:
1483
+ - '*/*'
1484
+ User-Agent:
1485
+ - FlickRaw/0.9.8
1486
+ Authorization:
1487
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1488
+ oauth_nonce="Eh%2FqizBqRG0fswQMkqKQ9Ca2TfsFMAfPeQGo%2F5jXQwY%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1489
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632480", oauth_token="<KUVA_ACCESS_TOKEN>",
1490
+ oauth_version="1.0"
1491
+ Content-Type:
1492
+ - application/x-www-form-urlencoded
1493
+ response:
1494
+ status:
1495
+ code: 200
1496
+ message: OK
1497
+ headers:
1498
+ Date:
1499
+ - Wed, 16 Apr 2014 07:14:40 GMT
1500
+ P3p:
1501
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1502
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1503
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1504
+ Cache-Control:
1505
+ - private
1506
+ X-Served-By:
1507
+ - www21.flickr.bf1.yahoo.com
1508
+ Vary:
1509
+ - Accept-Encoding
1510
+ Content-Length:
1511
+ - '361'
1512
+ Content-Type:
1513
+ - application/json
1514
+ Age:
1515
+ - '3'
1516
+ Via:
1517
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1518
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1519
+ Server:
1520
+ - ATS
1521
+ Connection:
1522
+ - keep-alive
1523
+ body:
1524
+ encoding: UTF-8
1525
+ string: '{"photoset":{"id":"72157621986269708", "owner":"8558751@N06", "username":"ktnl",
1526
+ "primary":"3802687475", "secret":"7007c87d22", "server":"3493", "farm":4,
1527
+ "photos":21, "count_views":"97", "count_comments":"0", "count_photos":"21",
1528
+ "count_videos":0, "title":{"_content":"Fit For Free Dance Parade"}, "description":{"_content":"The
1529
+ Fit For Free Dance Parade is a parade of trucks with DJ''s and dancers on
1530
+ them, which goes straight through Rotterdam."}, "can_comment":1, "date_create":"1249803502",
1531
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1532
+ "stat":"ok"}'
1533
+ http_version:
1534
+ recorded_at: Wed, 16 Apr 2014 07:14:41 GMT
1535
+ - request:
1536
+ method: post
1537
+ uri: https://api.flickr.com/services/rest/
1538
+ body:
1539
+ encoding: US-ASCII
1540
+ string: photoset_id=72157621709918913&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1541
+ headers:
1542
+ Accept-Encoding:
1543
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1544
+ Accept:
1545
+ - '*/*'
1546
+ User-Agent:
1547
+ - FlickRaw/0.9.8
1548
+ Authorization:
1549
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1550
+ oauth_nonce="w4xdwgO7xwdwe5%2BNnvtEvAyLV8K38YNahI6OmPHu%2FQQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1551
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632481", oauth_token="<KUVA_ACCESS_TOKEN>",
1552
+ oauth_version="1.0"
1553
+ Content-Type:
1554
+ - application/x-www-form-urlencoded
1555
+ response:
1556
+ status:
1557
+ code: 200
1558
+ message: OK
1559
+ headers:
1560
+ Date:
1561
+ - Wed, 16 Apr 2014 07:14:41 GMT
1562
+ P3p:
1563
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1564
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1565
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1566
+ Cache-Control:
1567
+ - private
1568
+ X-Served-By:
1569
+ - www173.flickr.bf1.yahoo.com
1570
+ Vary:
1571
+ - Accept-Encoding
1572
+ Content-Length:
1573
+ - '366'
1574
+ Content-Type:
1575
+ - application/json
1576
+ Age:
1577
+ - '0'
1578
+ Via:
1579
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1580
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1581
+ Server:
1582
+ - ATS
1583
+ Connection:
1584
+ - keep-alive
1585
+ body:
1586
+ encoding: UTF-8
1587
+ string: '{"photoset":{"id":"72157621709918913", "owner":"8558751@N06", "username":"ktnl",
1588
+ "primary":"3757528316", "secret":"a20bd0c139", "server":"2610", "farm":3,
1589
+ "photos":58, "count_views":"290", "count_comments":"0", "count_photos":"58",
1590
+ "count_videos":0, "title":{"_content":"Zomer Carnaval ''09"}, "description":{"_content":"These
1591
+ shots were taken at the Ortel Zomer Carnaval 2009 in Rotterdam. They were
1592
+ al taken with my Nikon 50 mm f\/1.8D at the Coolsingel."}, "can_comment":1,
1593
+ "date_create":"1248592969", "date_update":"1356165010", "coverphoto_server":"0",
1594
+ "coverphoto_farm":0}, "stat":"ok"}'
1595
+ http_version:
1596
+ recorded_at: Wed, 16 Apr 2014 07:14:41 GMT
1597
+ - request:
1598
+ method: post
1599
+ uri: https://api.flickr.com/services/rest/
1600
+ body:
1601
+ encoding: US-ASCII
1602
+ string: photoset_id=72157621226409953&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1603
+ headers:
1604
+ Accept-Encoding:
1605
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1606
+ Accept:
1607
+ - '*/*'
1608
+ User-Agent:
1609
+ - FlickRaw/0.9.8
1610
+ Authorization:
1611
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1612
+ oauth_nonce="D4hxwQItzFTOcQQMKJtnJwOmObc2cYQiFZokvUCmXs0%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1613
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632481", oauth_token="<KUVA_ACCESS_TOKEN>",
1614
+ oauth_version="1.0"
1615
+ Content-Type:
1616
+ - application/x-www-form-urlencoded
1617
+ response:
1618
+ status:
1619
+ code: 200
1620
+ message: OK
1621
+ headers:
1622
+ Date:
1623
+ - Wed, 16 Apr 2014 07:14:41 GMT
1624
+ P3p:
1625
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1626
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1627
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1628
+ Cache-Control:
1629
+ - private
1630
+ X-Served-By:
1631
+ - www52.flickr.bf1.yahoo.com
1632
+ Vary:
1633
+ - Accept-Encoding
1634
+ Content-Length:
1635
+ - '326'
1636
+ Content-Type:
1637
+ - application/json
1638
+ Age:
1639
+ - '0'
1640
+ Via:
1641
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1642
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1643
+ Server:
1644
+ - ATS
1645
+ Connection:
1646
+ - keep-alive
1647
+ body:
1648
+ encoding: UTF-8
1649
+ string: '{"photoset":{"id":"72157621226409953", "owner":"8558751@N06", "username":"ktnl",
1650
+ "primary":"3713875609", "secret":"4b441bf691", "server":"3474", "farm":4,
1651
+ "photos":15, "count_views":"124", "count_comments":"0", "count_photos":"15",
1652
+ "count_videos":0, "title":{"_content":"North Sea Round Town"}, "description":{"_content":"North
1653
+ Sea Round Town is the warming-up of the North Sea Jazz Festival in Rotterdam."},
1654
+ "can_comment":1, "date_create":"1247436891", "date_update":"1356165010", "coverphoto_server":"0",
1655
+ "coverphoto_farm":0}, "stat":"ok"}'
1656
+ http_version:
1657
+ recorded_at: Wed, 16 Apr 2014 07:14:42 GMT
1658
+ - request:
1659
+ method: post
1660
+ uri: https://api.flickr.com/services/rest/
1661
+ body:
1662
+ encoding: US-ASCII
1663
+ string: photoset_id=72157620266565933&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1664
+ headers:
1665
+ Accept-Encoding:
1666
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1667
+ Accept:
1668
+ - '*/*'
1669
+ User-Agent:
1670
+ - FlickRaw/0.9.8
1671
+ Authorization:
1672
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1673
+ oauth_nonce="IVSDNy%2F1HGVi0O2zm2VML%2F4PfVeg5BN7R9U6F7Has8Y%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1674
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632482", oauth_token="<KUVA_ACCESS_TOKEN>",
1675
+ oauth_version="1.0"
1676
+ Content-Type:
1677
+ - application/x-www-form-urlencoded
1678
+ response:
1679
+ status:
1680
+ code: 200
1681
+ message: OK
1682
+ headers:
1683
+ Date:
1684
+ - Wed, 16 Apr 2014 07:14:42 GMT
1685
+ P3p:
1686
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1687
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1688
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1689
+ Cache-Control:
1690
+ - private
1691
+ X-Served-By:
1692
+ - www51.flickr.bf1.yahoo.com
1693
+ Vary:
1694
+ - Accept-Encoding
1695
+ Content-Length:
1696
+ - '368'
1697
+ Content-Type:
1698
+ - application/json
1699
+ Age:
1700
+ - '0'
1701
+ Via:
1702
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1703
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1704
+ Server:
1705
+ - ATS
1706
+ Connection:
1707
+ - keep-alive
1708
+ body:
1709
+ encoding: UTF-8
1710
+ string: '{"photoset":{"id":"72157620266565933", "owner":"8558751@N06", "username":"ktnl",
1711
+ "primary":"3654106253", "secret":"3b5eca01e6", "server":"3394", "farm":4,
1712
+ "photos":186, "count_views":"491", "count_comments":"0", "count_photos":"186",
1713
+ "count_videos":0, "title":{"_content":"New York City"}, "description":{"_content":"These
1714
+ shots were taken with my Nikon D80 and the Nikkor 50mm f\/1.8D in New York
1715
+ City, USA. Some of the shots were taken with the Nikkor 55-200mm f\/4-5.6."},
1716
+ "can_comment":1, "date_create":"1245782076", "date_update":"1356165013", "coverphoto_server":"0",
1717
+ "coverphoto_farm":0}, "stat":"ok"}'
1718
+ http_version:
1719
+ recorded_at: Wed, 16 Apr 2014 07:14:42 GMT
1720
+ - request:
1721
+ method: post
1722
+ uri: https://api.flickr.com/services/rest/
1723
+ body:
1724
+ encoding: US-ASCII
1725
+ string: photoset_id=72157619874753455&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1726
+ headers:
1727
+ Accept-Encoding:
1728
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1729
+ Accept:
1730
+ - '*/*'
1731
+ User-Agent:
1732
+ - FlickRaw/0.9.8
1733
+ Authorization:
1734
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1735
+ oauth_nonce="ta1ROHTQEbAHOP0IFnvp09LN6AZVCLQbSUoxPJKVF2E%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1736
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632482", oauth_token="<KUVA_ACCESS_TOKEN>",
1737
+ oauth_version="1.0"
1738
+ Content-Type:
1739
+ - application/x-www-form-urlencoded
1740
+ response:
1741
+ status:
1742
+ code: 200
1743
+ message: OK
1744
+ headers:
1745
+ Date:
1746
+ - Wed, 16 Apr 2014 07:14:42 GMT
1747
+ P3p:
1748
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1749
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1750
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1751
+ Cache-Control:
1752
+ - private
1753
+ X-Served-By:
1754
+ - www191.flickr.bf1.yahoo.com
1755
+ Vary:
1756
+ - Accept-Encoding
1757
+ Content-Length:
1758
+ - '372'
1759
+ Content-Type:
1760
+ - application/json
1761
+ Age:
1762
+ - '0'
1763
+ Via:
1764
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1765
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1766
+ Server:
1767
+ - ATS
1768
+ Connection:
1769
+ - keep-alive
1770
+ body:
1771
+ encoding: UTF-8
1772
+ string: '{"photoset":{"id":"72157619874753455", "owner":"8558751@N06", "username":"ktnl",
1773
+ "primary":"3643159571", "secret":"f7623d5eaf", "server":"3570", "farm":4,
1774
+ "photos":133, "count_views":"401", "count_comments":"0", "count_photos":"133",
1775
+ "count_videos":0, "title":{"_content":"New York City (UWA)"}, "description":{"_content":"These
1776
+ shots were taken with my Nikon D80 and the Tokina 12-24mm f\/4, an Ultra Wide
1777
+ Angle lens, in New York City, USA."}, "can_comment":1, "date_create":"1245423559",
1778
+ "date_update":"1356165011", "coverphoto_server":"0", "coverphoto_farm":0},
1779
+ "stat":"ok"}'
1780
+ http_version:
1781
+ recorded_at: Wed, 16 Apr 2014 07:14:42 GMT
1782
+ - request:
1783
+ method: post
1784
+ uri: https://api.flickr.com/services/rest/
1785
+ body:
1786
+ encoding: US-ASCII
1787
+ string: photoset_id=72157618789715578&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1788
+ headers:
1789
+ Accept-Encoding:
1790
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1791
+ Accept:
1792
+ - '*/*'
1793
+ User-Agent:
1794
+ - FlickRaw/0.9.8
1795
+ Authorization:
1796
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1797
+ oauth_nonce="QRZXxnHQ1XExuRTKkbbIXqXwc42oie6xngSlIgIK6I8%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1798
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632482", oauth_token="<KUVA_ACCESS_TOKEN>",
1799
+ oauth_version="1.0"
1800
+ Content-Type:
1801
+ - application/x-www-form-urlencoded
1802
+ response:
1803
+ status:
1804
+ code: 200
1805
+ message: OK
1806
+ headers:
1807
+ Date:
1808
+ - Wed, 16 Apr 2014 07:14:42 GMT
1809
+ P3p:
1810
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1811
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1812
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1813
+ Cache-Control:
1814
+ - private
1815
+ X-Served-By:
1816
+ - www34.flickr.bf1.yahoo.com
1817
+ Vary:
1818
+ - Accept-Encoding
1819
+ Content-Length:
1820
+ - '295'
1821
+ Content-Type:
1822
+ - application/json
1823
+ Age:
1824
+ - '2'
1825
+ Via:
1826
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1827
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1828
+ Server:
1829
+ - ATS
1830
+ Connection:
1831
+ - keep-alive
1832
+ body:
1833
+ encoding: UTF-8
1834
+ string: '{"photoset":{"id":"72157618789715578", "owner":"8558751@N06", "username":"ktnl",
1835
+ "primary":"3563736117", "secret":"482e7889db", "server":"3656", "farm":4,
1836
+ "photos":13, "count_views":"47", "count_comments":"0", "count_photos":"13",
1837
+ "count_videos":0, "title":{"_content":"Antwerp"}, "description":{"_content":"Shots
1838
+ I''ve taken in Antwerp."}, "can_comment":1, "date_create":"1243286961", "date_update":"1356165009",
1839
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
1840
+ http_version:
1841
+ recorded_at: Wed, 16 Apr 2014 07:14:43 GMT
1842
+ - request:
1843
+ method: post
1844
+ uri: https://api.flickr.com/services/rest/
1845
+ body:
1846
+ encoding: US-ASCII
1847
+ string: photoset_id=72157617813232989&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1848
+ headers:
1849
+ Accept-Encoding:
1850
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1851
+ Accept:
1852
+ - '*/*'
1853
+ User-Agent:
1854
+ - FlickRaw/0.9.8
1855
+ Authorization:
1856
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1857
+ oauth_nonce="Rmm8Fa5dYwXAwMepiVtSkEPly7m8j%2Fj8uUVehjLAL2A%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1858
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632483", oauth_token="<KUVA_ACCESS_TOKEN>",
1859
+ oauth_version="1.0"
1860
+ Content-Type:
1861
+ - application/x-www-form-urlencoded
1862
+ response:
1863
+ status:
1864
+ code: 200
1865
+ message: OK
1866
+ headers:
1867
+ Date:
1868
+ - Wed, 16 Apr 2014 07:14:43 GMT
1869
+ P3p:
1870
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1871
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1872
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1873
+ Cache-Control:
1874
+ - private
1875
+ X-Served-By:
1876
+ - www1.flickr.bf1.yahoo.com
1877
+ Vary:
1878
+ - Accept-Encoding
1879
+ Content-Length:
1880
+ - '334'
1881
+ Content-Type:
1882
+ - application/json
1883
+ Age:
1884
+ - '0'
1885
+ Via:
1886
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1887
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1888
+ Server:
1889
+ - ATS
1890
+ Connection:
1891
+ - keep-alive
1892
+ body:
1893
+ encoding: UTF-8
1894
+ string: '{"photoset":{"id":"72157617813232989", "owner":"8558751@N06", "username":"ktnl",
1895
+ "primary":"3515445170", "secret":"468e074632", "server":"3356", "farm":4,
1896
+ "photos":3, "count_views":"31", "count_comments":"0", "count_photos":"3",
1897
+ "count_videos":0, "title":{"_content":"Night At The Docks"}, "description":{"_content":"These
1898
+ shots were taken at the docks of Rotterdam. We were standing near the Maas."},
1899
+ "can_comment":1, "date_create":"1241870453", "date_update":"1356165009", "coverphoto_server":"0",
1900
+ "coverphoto_farm":0}, "stat":"ok"}'
1901
+ http_version:
1902
+ recorded_at: Wed, 16 Apr 2014 07:14:43 GMT
1903
+ - request:
1904
+ method: post
1905
+ uri: https://api.flickr.com/services/rest/
1906
+ body:
1907
+ encoding: US-ASCII
1908
+ string: photoset_id=72157611834597247&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1909
+ headers:
1910
+ Accept-Encoding:
1911
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1912
+ Accept:
1913
+ - '*/*'
1914
+ User-Agent:
1915
+ - FlickRaw/0.9.8
1916
+ Authorization:
1917
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1918
+ oauth_nonce="PGwHuYsItdab7Xa8VVCg9kwikKPmSItddt2q%2BzpyfHM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1919
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632483", oauth_token="<KUVA_ACCESS_TOKEN>",
1920
+ oauth_version="1.0"
1921
+ Content-Type:
1922
+ - application/x-www-form-urlencoded
1923
+ response:
1924
+ status:
1925
+ code: 200
1926
+ message: OK
1927
+ headers:
1928
+ Date:
1929
+ - Wed, 16 Apr 2014 07:14:43 GMT
1930
+ P3p:
1931
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1932
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1933
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1934
+ Cache-Control:
1935
+ - private
1936
+ X-Served-By:
1937
+ - www177.flickr.bf1.yahoo.com
1938
+ Vary:
1939
+ - Accept-Encoding
1940
+ Content-Length:
1941
+ - '356'
1942
+ Content-Type:
1943
+ - application/json
1944
+ Age:
1945
+ - '0'
1946
+ Via:
1947
+ - http/1.1 fts110.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1948
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
1949
+ Server:
1950
+ - ATS
1951
+ Connection:
1952
+ - keep-alive
1953
+ body:
1954
+ encoding: UTF-8
1955
+ string: '{"photoset":{"id":"72157611834597247", "owner":"8558751@N06", "username":"ktnl",
1956
+ "primary":"3149804427", "secret":"0b95ff03f7", "server":"3101", "farm":4,
1957
+ "photos":20, "count_views":"103", "count_comments":"0", "count_photos":"20",
1958
+ "count_videos":0, "title":{"_content":"Red Bull Knock Out"}, "description":{"_content":"The
1959
+ Red Bull Knockout took place in Scheveningen, the Netherlands on November
1960
+ 16th. These shots were taken there."}, "can_comment":1, "date_create":"1230641381",
1961
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
1962
+ "stat":"ok"}'
1963
+ http_version:
1964
+ recorded_at: Wed, 16 Apr 2014 07:14:43 GMT
1965
+ - request:
1966
+ method: post
1967
+ uri: https://api.flickr.com/services/rest/
1968
+ body:
1969
+ encoding: US-ASCII
1970
+ string: photoset_id=72157608768338052&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
1971
+ headers:
1972
+ Accept-Encoding:
1973
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1974
+ Accept:
1975
+ - '*/*'
1976
+ User-Agent:
1977
+ - FlickRaw/0.9.8
1978
+ Authorization:
1979
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
1980
+ oauth_nonce="sKCZ5ErfgM0KXECsu3zxyKDzwiPXwlzpcdoeb0mXP8Q%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
1981
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632483", oauth_token="<KUVA_ACCESS_TOKEN>",
1982
+ oauth_version="1.0"
1983
+ Content-Type:
1984
+ - application/x-www-form-urlencoded
1985
+ response:
1986
+ status:
1987
+ code: 200
1988
+ message: OK
1989
+ headers:
1990
+ Date:
1991
+ - Wed, 16 Apr 2014 07:14:43 GMT
1992
+ P3p:
1993
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1994
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1995
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1996
+ Cache-Control:
1997
+ - private
1998
+ X-Served-By:
1999
+ - www279.flickr.bf1.yahoo.com
2000
+ Vary:
2001
+ - Accept-Encoding
2002
+ Content-Length:
2003
+ - '354'
2004
+ Content-Type:
2005
+ - application/json
2006
+ Age:
2007
+ - '0'
2008
+ Via:
2009
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2010
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2011
+ Server:
2012
+ - ATS
2013
+ Connection:
2014
+ - keep-alive
2015
+ body:
2016
+ encoding: UTF-8
2017
+ string: '{"photoset":{"id":"72157608768338052", "owner":"8558751@N06", "username":"ktnl",
2018
+ "primary":"3070765188", "secret":"28b8fa5d38", "server":"3201", "farm":4,
2019
+ "photos":35, "count_views":"383", "count_comments":"0", "count_photos":"35",
2020
+ "count_videos":0, "title":{"_content":"Zoom Experience ''08"}, "description":{"_content":"Zoom
2021
+ Experience is a Dutch digital photography event hosted in the ''Jaarbeurs''
2022
+ in Utrecht by the Zoom.nl magazine."}, "can_comment":1, "date_create":"1226182293",
2023
+ "date_update":"1356165010", "coverphoto_server":"0", "coverphoto_farm":0},
2024
+ "stat":"ok"}'
2025
+ http_version:
2026
+ recorded_at: Wed, 16 Apr 2014 07:14:43 GMT
2027
+ - request:
2028
+ method: post
2029
+ uri: https://api.flickr.com/services/rest/
2030
+ body:
2031
+ encoding: US-ASCII
2032
+ string: photoset_id=72157607994521912&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2033
+ headers:
2034
+ Accept-Encoding:
2035
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2036
+ Accept:
2037
+ - '*/*'
2038
+ User-Agent:
2039
+ - FlickRaw/0.9.8
2040
+ Authorization:
2041
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2042
+ oauth_nonce="BhUwqVINIxYe2bGpSlgRgFr9u7rw9vD1vH1%2BiU1Mkcs%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2043
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632483", oauth_token="<KUVA_ACCESS_TOKEN>",
2044
+ oauth_version="1.0"
2045
+ Content-Type:
2046
+ - application/x-www-form-urlencoded
2047
+ response:
2048
+ status:
2049
+ code: 200
2050
+ message: OK
2051
+ headers:
2052
+ Date:
2053
+ - Wed, 16 Apr 2014 07:14:43 GMT
2054
+ P3p:
2055
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2056
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2057
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2058
+ Cache-Control:
2059
+ - private
2060
+ X-Served-By:
2061
+ - www65.flickr.bf1.yahoo.com
2062
+ Vary:
2063
+ - Accept-Encoding
2064
+ Content-Length:
2065
+ - '346'
2066
+ Content-Type:
2067
+ - application/json
2068
+ Age:
2069
+ - '3'
2070
+ Via:
2071
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2072
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2073
+ Server:
2074
+ - ATS
2075
+ Connection:
2076
+ - keep-alive
2077
+ body:
2078
+ encoding: UTF-8
2079
+ string: '{"photoset":{"id":"72157607994521912", "owner":"8558751@N06", "username":"ktnl",
2080
+ "primary":"2938539715", "secret":"683e0092c3", "server":"3025", "farm":4,
2081
+ "photos":12, "count_views":"1169", "count_comments":"0", "count_photos":"12",
2082
+ "count_videos":0, "title":{"_content":"100% Tuning"}, "description":{"_content":"100%
2083
+ Tuning is the largest indoor tuning event in Holland. This year was the 5th
2084
+ edition of 100% Tuning in Ahoy Rotterdam."}, "can_comment":1, "date_create":"1223927875",
2085
+ "date_update":"1356165009", "coverphoto_server":"0", "coverphoto_farm":0},
2086
+ "stat":"ok"}'
2087
+ http_version:
2088
+ recorded_at: Wed, 16 Apr 2014 07:14:44 GMT
2089
+ - request:
2090
+ method: post
2091
+ uri: https://api.flickr.com/services/rest/
2092
+ body:
2093
+ encoding: US-ASCII
2094
+ string: photoset_id=72157607752895562&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2095
+ headers:
2096
+ Accept-Encoding:
2097
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2098
+ Accept:
2099
+ - '*/*'
2100
+ User-Agent:
2101
+ - FlickRaw/0.9.8
2102
+ Authorization:
2103
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2104
+ oauth_nonce="RbumRwPA7v1OA16A8hCze0I%2FnExTNsG7Rn41iKwZTF4%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2105
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632484", oauth_token="<KUVA_ACCESS_TOKEN>",
2106
+ oauth_version="1.0"
2107
+ Content-Type:
2108
+ - application/x-www-form-urlencoded
2109
+ response:
2110
+ status:
2111
+ code: 200
2112
+ message: OK
2113
+ headers:
2114
+ Date:
2115
+ - Wed, 16 Apr 2014 07:14:44 GMT
2116
+ P3p:
2117
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2118
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2119
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2120
+ Cache-Control:
2121
+ - private
2122
+ X-Served-By:
2123
+ - www228.flickr.bf1.yahoo.com
2124
+ Vary:
2125
+ - Accept-Encoding
2126
+ Content-Length:
2127
+ - '358'
2128
+ Content-Type:
2129
+ - application/json
2130
+ Age:
2131
+ - '0'
2132
+ Via:
2133
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2134
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2135
+ Server:
2136
+ - ATS
2137
+ Connection:
2138
+ - keep-alive
2139
+ body:
2140
+ encoding: UTF-8
2141
+ string: '{"photoset":{"id":"72157607752895562", "owner":"8558751@N06", "username":"ktnl",
2142
+ "primary":"2914332291", "secret":"fd4400f0dd", "server":"3248", "farm":4,
2143
+ "photos":17, "count_views":"101", "count_comments":"0", "count_photos":"17",
2144
+ "count_videos":0, "title":{"_content":"Training Feijenoord"}, "description":{"_content":"These
2145
+ photos were taken on a saturday at De Kuip in Rotterdam. The selection of
2146
+ Feijenoord 1 was training there at the moment."}, "can_comment":1, "date_create":"1223214961",
2147
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2148
+ "stat":"ok"}'
2149
+ http_version:
2150
+ recorded_at: Wed, 16 Apr 2014 07:14:44 GMT
2151
+ - request:
2152
+ method: post
2153
+ uri: https://api.flickr.com/services/rest/
2154
+ body:
2155
+ encoding: US-ASCII
2156
+ string: photoset_id=72157607757878689&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2157
+ headers:
2158
+ Accept-Encoding:
2159
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2160
+ Accept:
2161
+ - '*/*'
2162
+ User-Agent:
2163
+ - FlickRaw/0.9.8
2164
+ Authorization:
2165
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2166
+ oauth_nonce="5Si9qQghlwqeSyMhFxMk7IYg9vkCop0ZMWONn9clzOY%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2167
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632484", oauth_token="<KUVA_ACCESS_TOKEN>",
2168
+ oauth_version="1.0"
2169
+ Content-Type:
2170
+ - application/x-www-form-urlencoded
2171
+ response:
2172
+ status:
2173
+ code: 200
2174
+ message: OK
2175
+ headers:
2176
+ Date:
2177
+ - Wed, 16 Apr 2014 07:14:44 GMT
2178
+ P3p:
2179
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2180
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2181
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2182
+ Cache-Control:
2183
+ - private
2184
+ X-Served-By:
2185
+ - www264.flickr.bf1.yahoo.com
2186
+ Vary:
2187
+ - Accept-Encoding
2188
+ Content-Length:
2189
+ - '361'
2190
+ Content-Type:
2191
+ - application/json
2192
+ Age:
2193
+ - '3'
2194
+ Via:
2195
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2196
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2197
+ Server:
2198
+ - ATS
2199
+ Connection:
2200
+ - keep-alive
2201
+ body:
2202
+ encoding: UTF-8
2203
+ string: '{"photoset":{"id":"72157607757878689", "owner":"8558751@N06", "username":"ktnl",
2204
+ "primary":"2914105201", "secret":"ae046eb2ea", "server":"3090", "farm":4,
2205
+ "photos":15, "count_views":"41", "count_comments":"0", "count_photos":"15",
2206
+ "count_videos":0, "title":{"_content":"Rotterdam Road Races"}, "description":{"_content":"The
2207
+ Rotterdam Road Races is an event with several races like the Fortis 1\/2 Marathon
2208
+ Rotterdam, AD 10 Km Loop and Rotterdam on Wheels."}, "can_comment":1, "date_create":"1223208582",
2209
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2210
+ "stat":"ok"}'
2211
+ http_version:
2212
+ recorded_at: Wed, 16 Apr 2014 07:14:45 GMT
2213
+ - request:
2214
+ method: post
2215
+ uri: https://api.flickr.com/services/rest/
2216
+ body:
2217
+ encoding: US-ASCII
2218
+ string: photoset_id=72157607755852863&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2219
+ headers:
2220
+ Accept-Encoding:
2221
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2222
+ Accept:
2223
+ - '*/*'
2224
+ User-Agent:
2225
+ - FlickRaw/0.9.8
2226
+ Authorization:
2227
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2228
+ oauth_nonce="VvaAZQyF1pnK7GDIFmWkW%2BD0otbthm8lETOUS1U%2BBcw%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2229
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632485", oauth_token="<KUVA_ACCESS_TOKEN>",
2230
+ oauth_version="1.0"
2231
+ Content-Type:
2232
+ - application/x-www-form-urlencoded
2233
+ response:
2234
+ status:
2235
+ code: 200
2236
+ message: OK
2237
+ headers:
2238
+ Date:
2239
+ - Wed, 16 Apr 2014 07:14:45 GMT
2240
+ P3p:
2241
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2242
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2243
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2244
+ Cache-Control:
2245
+ - private
2246
+ X-Served-By:
2247
+ - www174.flickr.bf1.yahoo.com
2248
+ Vary:
2249
+ - Accept-Encoding
2250
+ Content-Length:
2251
+ - '379'
2252
+ Content-Type:
2253
+ - application/json
2254
+ Age:
2255
+ - '0'
2256
+ Via:
2257
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2258
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2259
+ Server:
2260
+ - ATS
2261
+ Connection:
2262
+ - keep-alive
2263
+ body:
2264
+ encoding: UTF-8
2265
+ string: '{"photoset":{"id":"72157607755852863", "owner":"8558751@N06", "username":"ktnl",
2266
+ "primary":"2914800312", "secret":"eac896c089", "server":"3197", "farm":4,
2267
+ "photos":19, "count_views":"61", "count_comments":"0", "count_photos":"19",
2268
+ "count_videos":0, "title":{"_content":"Streetmasters ''08"}, "description":{"_content":"Streetmasters
2269
+ is a streetsportevent with battles for inline skaters, skateboarders, BMX-ers,
2270
+ breakdancers and streetdancers. This was the finale at Westblaak in Rotterdam."},
2271
+ "can_comment":1, "date_create":"1223203353", "date_update":"1356165012", "coverphoto_server":"0",
2272
+ "coverphoto_farm":0}, "stat":"ok"}'
2273
+ http_version:
2274
+ recorded_at: Wed, 16 Apr 2014 07:14:45 GMT
2275
+ - request:
2276
+ method: post
2277
+ uri: https://api.flickr.com/services/rest/
2278
+ body:
2279
+ encoding: US-ASCII
2280
+ string: photoset_id=72157607733513100&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2281
+ headers:
2282
+ Accept-Encoding:
2283
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2284
+ Accept:
2285
+ - '*/*'
2286
+ User-Agent:
2287
+ - FlickRaw/0.9.8
2288
+ Authorization:
2289
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2290
+ oauth_nonce="Inagt3YlAgKddErSanPaQ0s97vGLImGPnKG8pC8E2cA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2291
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632485", oauth_token="<KUVA_ACCESS_TOKEN>",
2292
+ oauth_version="1.0"
2293
+ Content-Type:
2294
+ - application/x-www-form-urlencoded
2295
+ response:
2296
+ status:
2297
+ code: 200
2298
+ message: OK
2299
+ headers:
2300
+ Date:
2301
+ - Wed, 16 Apr 2014 07:14:45 GMT
2302
+ P3p:
2303
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2304
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2305
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2306
+ Cache-Control:
2307
+ - private
2308
+ X-Served-By:
2309
+ - www31.flickr.bf1.yahoo.com
2310
+ Vary:
2311
+ - Accept-Encoding
2312
+ Content-Length:
2313
+ - '299'
2314
+ Content-Type:
2315
+ - application/json
2316
+ Age:
2317
+ - '0'
2318
+ Via:
2319
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2320
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2321
+ Server:
2322
+ - ATS
2323
+ Connection:
2324
+ - keep-alive
2325
+ body:
2326
+ encoding: UTF-8
2327
+ string: '{"photoset":{"id":"72157607733513100", "owner":"8558751@N06", "username":"ktnl",
2328
+ "primary":"2912489161", "secret":"d2fb34f716", "server":"3105", "farm":4,
2329
+ "photos":24, "count_views":"67", "count_comments":"0", "count_photos":"24",
2330
+ "count_videos":0, "title":{"_content":"Diergaarde Blijdorp"}, "description":{"_content":"Rotterdam
2331
+ Zoo: Diergaarde Blijdorp"}, "can_comment":1, "date_create":"1223156815", "date_update":"1356165012",
2332
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2333
+ http_version:
2334
+ recorded_at: Wed, 16 Apr 2014 07:14:45 GMT
2335
+ - request:
2336
+ method: post
2337
+ uri: https://api.flickr.com/services/rest/
2338
+ body:
2339
+ encoding: US-ASCII
2340
+ string: photoset_id=72157607758936165&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2341
+ headers:
2342
+ Accept-Encoding:
2343
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2344
+ Accept:
2345
+ - '*/*'
2346
+ User-Agent:
2347
+ - FlickRaw/0.9.8
2348
+ Authorization:
2349
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2350
+ oauth_nonce="S0ujm99Gc1kfdLeX0e6EqhRWXxp5yEbLNUDPA3OG7ZI%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2351
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632485", oauth_token="<KUVA_ACCESS_TOKEN>",
2352
+ oauth_version="1.0"
2353
+ Content-Type:
2354
+ - application/x-www-form-urlencoded
2355
+ response:
2356
+ status:
2357
+ code: 200
2358
+ message: OK
2359
+ headers:
2360
+ Date:
2361
+ - Wed, 16 Apr 2014 07:14:46 GMT
2362
+ P3p:
2363
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2364
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2365
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2366
+ Cache-Control:
2367
+ - private
2368
+ X-Served-By:
2369
+ - www318.flickr.bf1.yahoo.com
2370
+ Vary:
2371
+ - Accept-Encoding
2372
+ Content-Length:
2373
+ - '381'
2374
+ Content-Type:
2375
+ - application/json
2376
+ Age:
2377
+ - '4'
2378
+ Via:
2379
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2380
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2381
+ Server:
2382
+ - ATS
2383
+ Connection:
2384
+ - keep-alive
2385
+ body:
2386
+ encoding: UTF-8
2387
+ string: '{"photoset":{"id":"72157607758936165", "owner":"8558751@N06", "username":"ktnl",
2388
+ "primary":"2914184769", "secret":"26ca769e6a", "server":"3100", "farm":4,
2389
+ "photos":23, "count_views":"65", "count_comments":"0", "count_photos":"23",
2390
+ "count_videos":0, "title":{"_content":"I (heart) Threadless"}, "description":{"_content":"Photos
2391
+ from our so-called &quot;I (heart) Threadless&quot; photoshoot for our profile
2392
+ on the Threadless website. It took place under the Brienenoordbrug in Rotterdam."},
2393
+ "can_comment":1, "date_create":"1223211099", "date_update":"1356165013", "coverphoto_server":"0",
2394
+ "coverphoto_farm":0}, "stat":"ok"}'
2395
+ http_version:
2396
+ recorded_at: Wed, 16 Apr 2014 07:14:47 GMT
2397
+ - request:
2398
+ method: post
2399
+ uri: https://api.flickr.com/services/rest/
2400
+ body:
2401
+ encoding: US-ASCII
2402
+ string: photoset_id=72157604876037835&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2403
+ headers:
2404
+ Accept-Encoding:
2405
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2406
+ Accept:
2407
+ - '*/*'
2408
+ User-Agent:
2409
+ - FlickRaw/0.9.8
2410
+ Authorization:
2411
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2412
+ oauth_nonce="szju55vHV4BbhC%2FgtDuOI3bNq5A2OZN0RrH9ugBHEUc%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2413
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632487", oauth_token="<KUVA_ACCESS_TOKEN>",
2414
+ oauth_version="1.0"
2415
+ Content-Type:
2416
+ - application/x-www-form-urlencoded
2417
+ response:
2418
+ status:
2419
+ code: 200
2420
+ message: OK
2421
+ headers:
2422
+ Date:
2423
+ - Wed, 16 Apr 2014 07:14:47 GMT
2424
+ P3p:
2425
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2426
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2427
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2428
+ Cache-Control:
2429
+ - private
2430
+ X-Served-By:
2431
+ - www224.flickr.bf1.yahoo.com
2432
+ Vary:
2433
+ - Accept-Encoding
2434
+ Content-Length:
2435
+ - '350'
2436
+ Content-Type:
2437
+ - application/json
2438
+ Age:
2439
+ - '3'
2440
+ Via:
2441
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2442
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2443
+ Server:
2444
+ - ATS
2445
+ Connection:
2446
+ - keep-alive
2447
+ body:
2448
+ encoding: UTF-8
2449
+ string: '{"photoset":{"id":"72157604876037835", "owner":"8558751@N06", "username":"ktnl",
2450
+ "primary":"3514636763", "secret":"f13062d9e4", "server":"3317", "farm":4,
2451
+ "photos":16, "count_views":"330", "count_comments":"0", "count_photos":"16",
2452
+ "count_videos":0, "title":{"_content":"Me, Myself & I"}, "description":{"_content":"The
2453
+ title of this set says it all. These are obviously selfportrets or images
2454
+ of me made by other people."}, "can_comment":1, "date_create":"1209896547",
2455
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2456
+ "stat":"ok"}'
2457
+ http_version:
2458
+ recorded_at: Wed, 16 Apr 2014 07:14:48 GMT
2459
+ - request:
2460
+ method: post
2461
+ uri: https://api.flickr.com/services/rest/
2462
+ body:
2463
+ encoding: US-ASCII
2464
+ string: photoset_id=72157613432665353&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2465
+ headers:
2466
+ Accept-Encoding:
2467
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2468
+ Accept:
2469
+ - '*/*'
2470
+ User-Agent:
2471
+ - FlickRaw/0.9.8
2472
+ Authorization:
2473
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2474
+ oauth_nonce="vwO4FQ0IB7jZ4%2BqcqTVCYNh2Uj4sOLsZkk0fGym5NCM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2475
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632488", oauth_token="<KUVA_ACCESS_TOKEN>",
2476
+ oauth_version="1.0"
2477
+ Content-Type:
2478
+ - application/x-www-form-urlencoded
2479
+ response:
2480
+ status:
2481
+ code: 200
2482
+ message: OK
2483
+ headers:
2484
+ Date:
2485
+ - Wed, 16 Apr 2014 07:14:48 GMT
2486
+ P3p:
2487
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2488
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2489
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2490
+ Cache-Control:
2491
+ - private
2492
+ X-Served-By:
2493
+ - www208.flickr.bf1.yahoo.com
2494
+ Vary:
2495
+ - Accept-Encoding
2496
+ Content-Length:
2497
+ - '285'
2498
+ Content-Type:
2499
+ - application/json
2500
+ Age:
2501
+ - '0'
2502
+ Via:
2503
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2504
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2505
+ Server:
2506
+ - ATS
2507
+ Connection:
2508
+ - keep-alive
2509
+ body:
2510
+ encoding: UTF-8
2511
+ string: '{"photoset":{"id":"72157613432665353", "owner":"8558751@N06", "username":"ktnl",
2512
+ "primary":"3831523902", "secret":"9cf20046e1", "server":"3534", "farm":4,
2513
+ "photos":33, "count_views":"64", "count_comments":"0", "count_photos":"33",
2514
+ "count_videos":0, "title":{"_content":"Portraits"}, "description":{"_content":"Portraits
2515
+ of people."}, "can_comment":1, "date_create":"1233996281", "date_update":"1356165012",
2516
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2517
+ http_version:
2518
+ recorded_at: Wed, 16 Apr 2014 07:14:48 GMT
2519
+ - request:
2520
+ method: post
2521
+ uri: https://api.flickr.com/services/rest/
2522
+ body:
2523
+ encoding: US-ASCII
2524
+ string: photoset_id=72157607956377672&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2525
+ headers:
2526
+ Accept-Encoding:
2527
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2528
+ Accept:
2529
+ - '*/*'
2530
+ User-Agent:
2531
+ - FlickRaw/0.9.8
2532
+ Authorization:
2533
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2534
+ oauth_nonce="uMzSA9rHcpUS669G1I3bYSXaQI8HE90mJPOpT2daPUE%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2535
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632488", oauth_token="<KUVA_ACCESS_TOKEN>",
2536
+ oauth_version="1.0"
2537
+ Content-Type:
2538
+ - application/x-www-form-urlencoded
2539
+ response:
2540
+ status:
2541
+ code: 200
2542
+ message: OK
2543
+ headers:
2544
+ Date:
2545
+ - Wed, 16 Apr 2014 07:14:48 GMT
2546
+ P3p:
2547
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2548
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2549
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2550
+ Cache-Control:
2551
+ - private
2552
+ X-Served-By:
2553
+ - www65.flickr.bf1.yahoo.com
2554
+ Vary:
2555
+ - Accept-Encoding
2556
+ Content-Length:
2557
+ - '405'
2558
+ Content-Type:
2559
+ - application/json
2560
+ Age:
2561
+ - '0'
2562
+ Via:
2563
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2564
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2565
+ Server:
2566
+ - ATS
2567
+ Connection:
2568
+ - keep-alive
2569
+ body:
2570
+ encoding: UTF-8
2571
+ string: '{"photoset":{"id":"72157607956377672", "owner":"8558751@N06", "username":"ktnl",
2572
+ "primary":"2933987351", "secret":"22ce24ddf9", "server":"3179", "farm":4,
2573
+ "photos":21, "count_views":"86", "count_comments":"0", "count_photos":"21",
2574
+ "count_videos":0, "title":{"_content":"Egypt"}, "description":{"_content":"In
2575
+ August 2008 I went to Sharm El-Sheikh, Egypt with my brother. We''ve also
2576
+ visited Cairo while we were there. All of these were taken with my Fujifilm
2577
+ FinePix s9600 (which I''ve sold)."}, "can_comment":1, "date_create":"1223824830",
2578
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2579
+ "stat":"ok"}'
2580
+ http_version:
2581
+ recorded_at: Wed, 16 Apr 2014 07:14:48 GMT
2582
+ - request:
2583
+ method: post
2584
+ uri: https://api.flickr.com/services/rest/
2585
+ body:
2586
+ encoding: US-ASCII
2587
+ string: photoset_id=72157607747813484&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2588
+ headers:
2589
+ Accept-Encoding:
2590
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2591
+ Accept:
2592
+ - '*/*'
2593
+ User-Agent:
2594
+ - FlickRaw/0.9.8
2595
+ Authorization:
2596
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2597
+ oauth_nonce="%2BkYTJCmbCiy4U6Ydw01ehdwWacrPIwRztbApr9NLBQA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2598
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632488", oauth_token="<KUVA_ACCESS_TOKEN>",
2599
+ oauth_version="1.0"
2600
+ Content-Type:
2601
+ - application/x-www-form-urlencoded
2602
+ response:
2603
+ status:
2604
+ code: 200
2605
+ message: OK
2606
+ headers:
2607
+ Date:
2608
+ - Wed, 16 Apr 2014 07:14:49 GMT
2609
+ P3p:
2610
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2611
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2612
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2613
+ Cache-Control:
2614
+ - private
2615
+ X-Served-By:
2616
+ - www39.flickr.bf1.yahoo.com
2617
+ Vary:
2618
+ - Accept-Encoding
2619
+ Content-Length:
2620
+ - '361'
2621
+ Content-Type:
2622
+ - application/json
2623
+ Age:
2624
+ - '0'
2625
+ Via:
2626
+ - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2627
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2628
+ Server:
2629
+ - ATS
2630
+ Connection:
2631
+ - keep-alive
2632
+ body:
2633
+ encoding: UTF-8
2634
+ string: '{"photoset":{"id":"72157607747813484", "owner":"8558751@N06", "username":"ktnl",
2635
+ "primary":"2914660920", "secret":"577a301104", "server":"3190", "farm":4,
2636
+ "photos":11, "count_views":"21", "count_comments":"0", "count_photos":"11",
2637
+ "count_videos":0, "title":{"_content":"Wereld havendagen"}, "description":{"_content":"The
2638
+ world harbor day is a large event in Rotterdam. It is meant to show what takes
2639
+ place in Europe''s biggest port."}, "can_comment":1, "date_create":"1223197948",
2640
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2641
+ "stat":"ok"}'
2642
+ http_version:
2643
+ recorded_at: Wed, 16 Apr 2014 07:14:49 GMT
2644
+ - request:
2645
+ method: post
2646
+ uri: https://api.flickr.com/services/rest/
2647
+ body:
2648
+ encoding: US-ASCII
2649
+ string: photoset_id=72157608065768431&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2650
+ headers:
2651
+ Accept-Encoding:
2652
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2653
+ Accept:
2654
+ - '*/*'
2655
+ User-Agent:
2656
+ - FlickRaw/0.9.8
2657
+ Authorization:
2658
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2659
+ oauth_nonce="XbAWav5P1E6lLcinURnXsSp1UK%2B2Tx9DY4NFjI8wmjk%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2660
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632489", oauth_token="<KUVA_ACCESS_TOKEN>",
2661
+ oauth_version="1.0"
2662
+ Content-Type:
2663
+ - application/x-www-form-urlencoded
2664
+ response:
2665
+ status:
2666
+ code: 200
2667
+ message: OK
2668
+ headers:
2669
+ Date:
2670
+ - Wed, 16 Apr 2014 07:14:49 GMT
2671
+ P3p:
2672
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2673
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2674
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2675
+ Cache-Control:
2676
+ - private
2677
+ X-Served-By:
2678
+ - www8.flickr.bf1.yahoo.com
2679
+ Vary:
2680
+ - Accept-Encoding
2681
+ Content-Length:
2682
+ - '328'
2683
+ Content-Type:
2684
+ - application/json
2685
+ Age:
2686
+ - '0'
2687
+ Via:
2688
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2689
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2690
+ Server:
2691
+ - ATS
2692
+ Connection:
2693
+ - keep-alive
2694
+ body:
2695
+ encoding: UTF-8
2696
+ string: '{"photoset":{"id":"72157608065768431", "owner":"8558751@N06", "username":"ktnl",
2697
+ "primary":"3260304504", "secret":"b566f0c1fa", "server":"3403", "farm":4,
2698
+ "photos":8, "count_views":"315", "count_comments":"0", "count_photos":"8",
2699
+ "count_videos":0, "title":{"_content":"Gadgets & Gear"}, "description":{"_content":"This
2700
+ set contains photos from my gadgets, gear and other shots that fit this set."},
2701
+ "can_comment":1, "date_create":"1224100790", "date_update":"1356165012", "coverphoto_server":"0",
2702
+ "coverphoto_farm":0}, "stat":"ok"}'
2703
+ http_version:
2704
+ recorded_at: Wed, 16 Apr 2014 07:14:49 GMT
2705
+ - request:
2706
+ method: post
2707
+ uri: https://api.flickr.com/services/rest/
2708
+ body:
2709
+ encoding: US-ASCII
2710
+ string: photoset_id=72157602136210676&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2711
+ headers:
2712
+ Accept-Encoding:
2713
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2714
+ Accept:
2715
+ - '*/*'
2716
+ User-Agent:
2717
+ - FlickRaw/0.9.8
2718
+ Authorization:
2719
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2720
+ oauth_nonce="ExyXsZsq2ZJyV%2Ff52t5tYcnakOgGNHDuOuQ7ovSj82o%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2721
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632489", oauth_token="<KUVA_ACCESS_TOKEN>",
2722
+ oauth_version="1.0"
2723
+ Content-Type:
2724
+ - application/x-www-form-urlencoded
2725
+ response:
2726
+ status:
2727
+ code: 200
2728
+ message: OK
2729
+ headers:
2730
+ Date:
2731
+ - Wed, 16 Apr 2014 07:14:49 GMT
2732
+ P3p:
2733
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2734
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2735
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2736
+ Cache-Control:
2737
+ - private
2738
+ X-Served-By:
2739
+ - www12.flickr.bf1.yahoo.com
2740
+ Vary:
2741
+ - Accept-Encoding
2742
+ Content-Length:
2743
+ - '389'
2744
+ Content-Type:
2745
+ - application/json
2746
+ Age:
2747
+ - '3'
2748
+ Via:
2749
+ - http/1.1 fts110.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2750
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2751
+ Server:
2752
+ - ATS
2753
+ Connection:
2754
+ - keep-alive
2755
+ body:
2756
+ encoding: UTF-8
2757
+ string: '{"photoset":{"id":"72157602136210676", "owner":"8558751@N06", "username":"ktnl",
2758
+ "primary":"2463323643", "secret":"49c99715da", "server":"2393", "farm":3,
2759
+ "photos":9, "count_views":"154", "count_comments":"0", "count_photos":"9",
2760
+ "count_videos":0, "title":{"_content":"Cars"}, "description":{"_content":"The
2761
+ photos in this set are of my cars. The first are from my Honda Civic 1.5 LSi
2762
+ ''93, which I''ve sold in the meanwhile. The other photos are from my BMW
2763
+ 316i Compact from ''98, which I currently own."}, "can_comment":1, "date_create":"1190657188",
2764
+ "date_update":"1356165012", "coverphoto_server":"0", "coverphoto_farm":0},
2765
+ "stat":"ok"}'
2766
+ http_version:
2767
+ recorded_at: Wed, 16 Apr 2014 07:14:50 GMT
2768
+ - request:
2769
+ method: post
2770
+ uri: https://api.flickr.com/services/rest/
2771
+ body:
2772
+ encoding: US-ASCII
2773
+ string: photoset_id=72157609118757238&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2774
+ headers:
2775
+ Accept-Encoding:
2776
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2777
+ Accept:
2778
+ - '*/*'
2779
+ User-Agent:
2780
+ - FlickRaw/0.9.8
2781
+ Authorization:
2782
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2783
+ oauth_nonce="jOCJixfwdI11SIqJUkoQC5dYvH8Cpex92WYKIj9uzLY%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2784
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632490", oauth_token="<KUVA_ACCESS_TOKEN>",
2785
+ oauth_version="1.0"
2786
+ Content-Type:
2787
+ - application/x-www-form-urlencoded
2788
+ response:
2789
+ status:
2790
+ code: 200
2791
+ message: OK
2792
+ headers:
2793
+ Date:
2794
+ - Wed, 16 Apr 2014 07:14:50 GMT
2795
+ P3p:
2796
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2797
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2798
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2799
+ Cache-Control:
2800
+ - private
2801
+ X-Served-By:
2802
+ - www38.flickr.bf1.yahoo.com
2803
+ Vary:
2804
+ - Accept-Encoding
2805
+ Content-Length:
2806
+ - '342'
2807
+ Content-Type:
2808
+ - application/json
2809
+ Age:
2810
+ - '0'
2811
+ Via:
2812
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2813
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2814
+ Server:
2815
+ - ATS
2816
+ Connection:
2817
+ - keep-alive
2818
+ body:
2819
+ encoding: UTF-8
2820
+ string: '{"photoset":{"id":"72157609118757238", "owner":"8558751@N06", "username":"ktnl",
2821
+ "primary":"2979327772", "secret":"1709ca8191", "server":"3048", "farm":4,
2822
+ "photos":101, "count_views":"79", "count_comments":"0", "count_photos":"101",
2823
+ "count_videos":0, "title":{"_content":"Bokeh"}, "description":{"_content":"Photographs
2824
+ that I''ve taken with out-of-focus areas in it produced by a shallow depth
2825
+ of field."}, "can_comment":1, "date_create":"1226764945", "date_update":"1356165012",
2826
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
2827
+ http_version:
2828
+ recorded_at: Wed, 16 Apr 2014 07:14:50 GMT
2829
+ - request:
2830
+ method: post
2831
+ uri: https://api.flickr.com/services/rest/
2832
+ body:
2833
+ encoding: US-ASCII
2834
+ string: photoset_id=72157608164792364&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2835
+ headers:
2836
+ Accept-Encoding:
2837
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2838
+ Accept:
2839
+ - '*/*'
2840
+ User-Agent:
2841
+ - FlickRaw/0.9.8
2842
+ Authorization:
2843
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2844
+ oauth_nonce="plKHCll7jQiiUqcPjapji%2Fu8xm3WsZqcYa2ezmojqzM%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2845
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632490", oauth_token="<KUVA_ACCESS_TOKEN>",
2846
+ oauth_version="1.0"
2847
+ Content-Type:
2848
+ - application/x-www-form-urlencoded
2849
+ response:
2850
+ status:
2851
+ code: 200
2852
+ message: OK
2853
+ headers:
2854
+ Date:
2855
+ - Wed, 16 Apr 2014 07:14:51 GMT
2856
+ P3p:
2857
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2858
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2859
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2860
+ Cache-Control:
2861
+ - private
2862
+ X-Served-By:
2863
+ - www287.flickr.bf1.yahoo.com
2864
+ Vary:
2865
+ - Accept-Encoding
2866
+ Content-Length:
2867
+ - '329'
2868
+ Content-Type:
2869
+ - application/json
2870
+ Age:
2871
+ - '0'
2872
+ Via:
2873
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2874
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2875
+ Server:
2876
+ - ATS
2877
+ Connection:
2878
+ - keep-alive
2879
+ body:
2880
+ encoding: UTF-8
2881
+ string: '{"photoset":{"id":"72157608164792364", "owner":"8558751@N06", "username":"ktnl",
2882
+ "primary":"2955114833", "secret":"7322751b77", "server":"3029", "farm":4,
2883
+ "photos":26, "count_views":"46", "count_comments":"0", "count_photos":"26",
2884
+ "count_videos":0, "title":{"_content":"Selective Colors"}, "description":{"_content":"This
2885
+ set contains photos that are mainly black and white with a selective color."},
2886
+ "can_comment":1, "date_create":"1224414579", "date_update":"1356165012", "coverphoto_server":"0",
2887
+ "coverphoto_farm":0}, "stat":"ok"}'
2888
+ http_version:
2889
+ recorded_at: Wed, 16 Apr 2014 07:14:51 GMT
2890
+ - request:
2891
+ method: post
2892
+ uri: https://api.flickr.com/services/rest/
2893
+ body:
2894
+ encoding: US-ASCII
2895
+ string: photoset_id=72157608177901148&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2896
+ headers:
2897
+ Accept-Encoding:
2898
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2899
+ Accept:
2900
+ - '*/*'
2901
+ User-Agent:
2902
+ - FlickRaw/0.9.8
2903
+ Authorization:
2904
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2905
+ oauth_nonce="FliD9j5zeKrOSKkfRGCBKeSmr6FMFMd9cjF7bTrsIWA%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2906
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632491", oauth_token="<KUVA_ACCESS_TOKEN>",
2907
+ oauth_version="1.0"
2908
+ Content-Type:
2909
+ - application/x-www-form-urlencoded
2910
+ response:
2911
+ status:
2912
+ code: 200
2913
+ message: OK
2914
+ headers:
2915
+ Date:
2916
+ - Wed, 16 Apr 2014 07:14:51 GMT
2917
+ P3p:
2918
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2919
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2920
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2921
+ Cache-Control:
2922
+ - private
2923
+ X-Served-By:
2924
+ - www268.flickr.bf1.yahoo.com
2925
+ Vary:
2926
+ - Accept-Encoding
2927
+ Content-Length:
2928
+ - '363'
2929
+ Content-Type:
2930
+ - application/json
2931
+ Age:
2932
+ - '0'
2933
+ Via:
2934
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2935
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2936
+ Server:
2937
+ - ATS
2938
+ Connection:
2939
+ - keep-alive
2940
+ body:
2941
+ encoding: UTF-8
2942
+ string: '{"photoset":{"id":"72157608177901148", "owner":"8558751@N06", "username":"ktnl",
2943
+ "primary":"3643167761", "secret":"32da16b737", "server":"2465", "farm":3,
2944
+ "photos":208, "count_views":"43", "count_comments":"0", "count_photos":"208",
2945
+ "count_videos":0, "title":{"_content":"Black & White"}, "description":{"_content":"The
2946
+ title of this set is pretty self explanatory, but just to make it more clear...
2947
+ it contains black and white photographs."}, "can_comment":1, "date_create":"1224448207",
2948
+ "date_update":"1356165013", "coverphoto_server":"0", "coverphoto_farm":0},
2949
+ "stat":"ok"}'
2950
+ http_version:
2951
+ recorded_at: Wed, 16 Apr 2014 07:14:51 GMT
2952
+ - request:
2953
+ method: post
2954
+ uri: https://api.flickr.com/services/rest/
2955
+ body:
2956
+ encoding: US-ASCII
2957
+ string: photoset_id=72157609130124623&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
2958
+ headers:
2959
+ Accept-Encoding:
2960
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2961
+ Accept:
2962
+ - '*/*'
2963
+ User-Agent:
2964
+ - FlickRaw/0.9.8
2965
+ Authorization:
2966
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
2967
+ oauth_nonce="bg4lyOmUkMMiF0lRBgXd1AFjjAuIT2JQdNHSCLKbQo4%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
2968
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632491", oauth_token="<KUVA_ACCESS_TOKEN>",
2969
+ oauth_version="1.0"
2970
+ Content-Type:
2971
+ - application/x-www-form-urlencoded
2972
+ response:
2973
+ status:
2974
+ code: 200
2975
+ message: OK
2976
+ headers:
2977
+ Date:
2978
+ - Wed, 16 Apr 2014 07:14:51 GMT
2979
+ P3p:
2980
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2981
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2982
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2983
+ Cache-Control:
2984
+ - private
2985
+ X-Served-By:
2986
+ - www244.flickr.bf1.yahoo.com
2987
+ Vary:
2988
+ - Accept-Encoding
2989
+ Content-Length:
2990
+ - '280'
2991
+ Content-Type:
2992
+ - application/json
2993
+ Age:
2994
+ - '0'
2995
+ Via:
2996
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2997
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
2998
+ Server:
2999
+ - ATS
3000
+ Connection:
3001
+ - keep-alive
3002
+ body:
3003
+ encoding: UTF-8
3004
+ string: '{"photoset":{"id":"72157609130124623", "owner":"8558751@N06", "username":"ktnl",
3005
+ "primary":"3031746973", "secret":"179aa08c2e", "server":"3294", "farm":4,
3006
+ "photos":8, "count_views":"35", "count_comments":"0", "count_photos":"8",
3007
+ "count_videos":0, "title":{"_content":"Product Photography"}, "description":{"_content":""},
3008
+ "can_comment":1, "date_create":"1226763941", "date_update":"1356165012", "coverphoto_server":"0",
3009
+ "coverphoto_farm":0}, "stat":"ok"}'
3010
+ http_version:
3011
+ recorded_at: Wed, 16 Apr 2014 07:14:51 GMT
3012
+ - request:
3013
+ method: post
3014
+ uri: https://api.flickr.com/services/rest/
3015
+ body:
3016
+ encoding: US-ASCII
3017
+ string: photoset_id=72157600303479345&method=flickr.photosets.getInfo&format=json&nojsoncallback=1
3018
+ headers:
3019
+ Accept-Encoding:
3020
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3021
+ Accept:
3022
+ - '*/*'
3023
+ User-Agent:
3024
+ - FlickRaw/0.9.8
3025
+ Authorization:
3026
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
3027
+ oauth_nonce="S59Ssdb7RuweYVGHrCxOOFGC%2BQbH15A1iDUrK8BjVFQ%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
3028
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632491", oauth_token="<KUVA_ACCESS_TOKEN>",
3029
+ oauth_version="1.0"
3030
+ Content-Type:
3031
+ - application/x-www-form-urlencoded
3032
+ response:
3033
+ status:
3034
+ code: 200
3035
+ message: OK
3036
+ headers:
3037
+ Date:
3038
+ - Wed, 16 Apr 2014 07:14:51 GMT
3039
+ P3p:
3040
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
3041
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
3042
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
3043
+ Cache-Control:
3044
+ - private
3045
+ X-Served-By:
3046
+ - www293.flickr.bf1.yahoo.com
3047
+ Vary:
3048
+ - Accept-Encoding
3049
+ Content-Length:
3050
+ - '290'
3051
+ Content-Type:
3052
+ - application/json
3053
+ Age:
3054
+ - '3'
3055
+ Via:
3056
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
3057
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
3058
+ Server:
3059
+ - ATS
3060
+ Connection:
3061
+ - keep-alive
3062
+ body:
3063
+ encoding: UTF-8
3064
+ string: '{"photoset":{"id":"72157600303479345", "owner":"8558751@N06", "username":"ktnl",
3065
+ "primary":"2464410072", "secret":"99a2e64e3e", "server":"2272", "farm":3,
3066
+ "photos":7, "count_views":"54", "count_comments":"0", "count_photos":"7",
3067
+ "count_videos":0, "title":{"_content":"Nature"}, "description":{"_content":"Flora,
3068
+ fauna and landscapes."}, "can_comment":1, "date_create":"1180873266", "date_update":"1356165017",
3069
+ "coverphoto_server":"0", "coverphoto_farm":0}, "stat":"ok"}'
3070
+ http_version:
3071
+ recorded_at: Wed, 16 Apr 2014 07:14:52 GMT
3072
+ - request:
3073
+ method: post
3074
+ uri: https://api.flickr.com/services/rest/
3075
+ body:
3076
+ encoding: US-ASCII
3077
+ string: photoset_id=72157632367381040&method=flickr.photosets.getPhotos&format=json&nojsoncallback=1
3078
+ headers:
3079
+ Accept-Encoding:
3080
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
3081
+ Accept:
3082
+ - '*/*'
3083
+ User-Agent:
3084
+ - FlickRaw/0.9.8
3085
+ Authorization:
3086
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<KUVA_API_KEY>",
3087
+ oauth_nonce="sGMMyKWuhNeGfzA5IhZxcYxewTtlNpB34RJfSmZsVJ8%3D", oauth_signature="<KUVA_SHARED_SECRET>%26<KUVA_ACCESS_SECRET>",
3088
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1397632492", oauth_token="<KUVA_ACCESS_TOKEN>",
3089
+ oauth_version="1.0"
3090
+ Content-Type:
3091
+ - application/x-www-form-urlencoded
3092
+ response:
3093
+ status:
3094
+ code: 200
3095
+ message: OK
3096
+ headers:
3097
+ Date:
3098
+ - Wed, 16 Apr 2014 07:14:52 GMT
3099
+ P3p:
3100
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
3101
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
3102
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
3103
+ Cache-Control:
3104
+ - private
3105
+ X-Served-By:
3106
+ - www67.flickr.bf1.yahoo.com
3107
+ Vary:
3108
+ - Accept-Encoding
3109
+ Content-Length:
3110
+ - '885'
3111
+ Content-Type:
3112
+ - application/json
3113
+ Age:
3114
+ - '0'
3115
+ Via:
3116
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
3117
+ http/1.1 r01.ycpi.ams.yahoo.net (ApacheTrafficServer/4.0.2 [cMsSf ])
3118
+ Server:
3119
+ - ATS
3120
+ Connection:
3121
+ - keep-alive
3122
+ body:
3123
+ encoding: UTF-8
3124
+ string: '{"photoset":{"id":"72157632367381040", "primary":"8318972536", "owner":"8558751@N06",
3125
+ "ownername":"ktnl", "photo":[{"id":"8318972536", "secret":"eda82f692f", "server":"8499",
3126
+ "farm":9, "title":"Top of the Eiffel Tower", "isprimary":"1"}, {"id":"8317914535",
3127
+ "secret":"c7393787f3", "server":"8217", "farm":9, "title":"Mus\u00e9e du Louvre",
3128
+ "isprimary":"0"}, {"id":"8318972024", "secret":"c065315906", "server":"8075",
3129
+ "farm":9, "title":"Mus\u00e9e du Louvre", "isprimary":"0"}, {"id":"8317914047",
3130
+ "secret":"afebce8291", "server":"8353", "farm":9, "title":"Mus\u00e9e du Louvre",
3131
+ "isprimary":"0"}, {"id":"8317913769", "secret":"df65484bbf", "server":"8212",
3132
+ "farm":9, "title":"Eiffel Tower", "isprimary":"0"}, {"id":"8317913551", "secret":"08da94c65d",
3133
+ "server":"8504", "farm":9, "title":"La Fontaine du Palmier", "isprimary":"0"},
3134
+ {"id":"8317913297", "secret":"a8b7de8c16", "server":"8358", "farm":9, "title":"Arc
3135
+ de Triomphe", "isprimary":"0"}, {"id":"8317913027", "secret":"763e732630",
3136
+ "server":"8499", "farm":9, "title":"Arc de Triomphe", "isprimary":"0"}, {"id":"8318970578",
3137
+ "secret":"c50215a334", "server":"8218", "farm":9, "title":"Paris", "isprimary":"0"},
3138
+ {"id":"8317912585", "secret":"a4b5b3469a", "server":"8083", "farm":9, "title":"Eiffel
3139
+ Tower", "isprimary":"0"}, {"id":"8317912343", "secret":"c93152ca8d", "server":"8222",
3140
+ "farm":9, "title":"Mus\u00e9e de l''Arm\u00e9e", "isprimary":"0"}, {"id":"8317912099",
3141
+ "secret":"22b52e8d35", "server":"8363", "farm":9, "title":"Mus\u00e9e de l''Arm\u00e9e",
3142
+ "isprimary":"0"}, {"id":"8318969664", "secret":"153371a19b", "server":"8491",
3143
+ "farm":9, "title":"Mus\u00e9e de l''Arm\u00e9e", "isprimary":"0"}, {"id":"8317911683",
3144
+ "secret":"d512373239", "server":"8084", "farm":9, "title":"Pont Alexandre
3145
+ III", "isprimary":"0"}, {"id":"8317911437", "secret":"8be1e7efd3", "server":"8361",
3146
+ "farm":9, "title":"Grand Palais", "isprimary":"0"}, {"id":"8318968876", "secret":"26d5bd1878",
3147
+ "server":"8503", "farm":9, "title":"L''\u00e9glise de la Madeleine", "isprimary":"0"},
3148
+ {"id":"8318969046", "secret":"56251fd609", "server":"8494", "farm":9, "title":"Obelisk
3149
+ of Luxor", "isprimary":"0"}, {"id":"8317910789", "secret":"467d54a99f", "server":"8216",
3150
+ "farm":9, "title":"Palais Garnier", "isprimary":"0"}, {"id":"8317910509",
3151
+ "secret":"1216246904", "server":"8358", "farm":9, "title":"Mus\u00e9e du Louvre",
3152
+ "isprimary":"0"}, {"id":"8317910267", "secret":"b819e196fb", "server":"8491",
3153
+ "farm":9, "title":"Arc de Triomphe du Carrousel", "isprimary":"0"}, {"id":"8317910013",
3154
+ "secret":"eec4c96afe", "server":"8364", "farm":9, "title":"Mus\u00e9e du Louvre",
3155
+ "isprimary":"0"}, {"id":"8318967686", "secret":"624429e46d", "server":"8078",
3156
+ "farm":9, "title":"Mus\u00e9e du Louvre", "isprimary":"0"}, {"id":"8318967488",
3157
+ "secret":"0cdab1c40e", "server":"8500", "farm":9, "title":"H\u00f4tel de Ville
3158
+ of Paris", "isprimary":"0"}, {"id":"8317909259", "secret":"abb257d191", "server":"8361",
3159
+ "farm":9, "title":"Streets of Paris", "isprimary":"0"}, {"id":"8317908947",
3160
+ "secret":"5e26048412", "server":"8496", "farm":9, "title":"Notre Dame", "isprimary":"0"},
3161
+ {"id":"8318966772", "secret":"3e25079d52", "server":"8214", "farm":9, "title":"Notre
3162
+ Dame", "isprimary":"0"}, {"id":"8318966518", "secret":"a0666c4332", "server":"8360",
3163
+ "farm":9, "title":"Notre Dame", "isprimary":"0"}, {"id":"8318966322", "secret":"695cca1b95",
3164
+ "server":"8215", "farm":9, "title":"H\u00f4tel de Ville of Paris", "isprimary":"0"}],
3165
+ "page":1, "per_page":500, "perpage":500, "pages":1, "total":"28", "title":"Paris"},
3166
+ "stat":"ok"}'
3167
+ http_version:
3168
+ recorded_at: Wed, 16 Apr 2014 07:14:52 GMT
3169
+ recorded_with: VCR 2.9.0