purdie 0.0.12 → 0.0.13

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 (79) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +17 -13
  3. data/Rakefile +6 -2
  4. data/features/comments.feature +2 -13
  5. data/features/duff-credentials.feature +2 -3
  6. data/features/flickr-album.feature +5 -0
  7. data/features/flickr-different-size.feature +1 -0
  8. data/features/flickr-with-lookups.feature +1 -0
  9. data/features/rfm.feature +5 -0
  10. data/features/select-file.feature +26 -24
  11. data/features/soundcloud-set.feature +2 -2
  12. data/features/support/fixtures/vcr.nope/A_URL_we_don_t_understand/Handle_a_URL_we_don_t_recognise.yml +125 -0
  13. data/features/support/fixtures/vcr.nope/First_contact_with_the_Real_World/Generate_YAML_for_the_Raw_Funk_Maharishi.yml +536 -0
  14. data/features/support/fixtures/vcr.nope/Flickr/Generate_Flickr_YAML.yml +131 -0
  15. data/features/support/fixtures/vcr.nope/Flickr/Generate_Flickr_YAML_with_lookups.yml +129 -0
  16. data/features/support/fixtures/vcr.nope/Flickr_album/Generate_Flickr_YAML_for_an_album.yml +2280 -0
  17. data/features/support/fixtures/vcr.nope/Handle_comments/Handle_comments_in_a_source_file.yml +131 -0
  18. data/features/support/fixtures/vcr.nope/Missing_or_bad_credentials/Bad_credentials_for_multiple_services.yml +156 -0
  19. data/features/support/fixtures/{vcr → vcr.nope}/Purdie/Generate_several_YAML.yml +0 -0
  20. data/features/support/fixtures/vcr.nope/Select_a_file_to_process/Choose_file_to_process.yml +220 -0
  21. data/features/support/fixtures/vcr.nope/Set_Flickr_picturesize/Generate_Flickr_YAML.yml +131 -0
  22. data/features/support/fixtures/{vcr/Select_a_file_to_process/Choose_file_to_process.yml → vcr.nope/Soundcloud/Generate_SoundCloud_YAML.yml} +4 -4
  23. data/features/support/fixtures/vcr.nope/Soundcloud/Generate_SoundCloud_YAML_for_multiple_tracks.yml +181 -0
  24. data/features/support/fixtures/vcr.nope/Soundcloud_set/Generate_YAML_for_a_SoundCloud_set.yml +461 -0
  25. data/features/support/fixtures/vcr.nope/Vimeo/Generate_Vimeo_YAML.yml +53 -0
  26. data/features/support/fixtures/vcr.nope/Vimeo_albums/Generate_YAML_for_a_Vimeo_album.yml +210 -0
  27. data/features/support/fixtures/vcr.nope/YouTube/Generate_YouTube_YAML.yml +970 -0
  28. data/features/support/fixtures/vcr.nope/YouTube_playlists/Generate_YAML_for_a_YouTube_playlist.yml +9688 -0
  29. data/features/support/fixtures/vcr/A_URL_we_don_t_understand/Handle_a_URL_we_don_t_recognise.yml +23 -17
  30. data/features/support/fixtures/vcr/First_contact_with_the_Real_World/Generate_YAML_for_the_Raw_Funk_Maharishi.yml +134 -57
  31. data/features/support/fixtures/vcr/Flickr/Generate_Flickr_YAML.yml +24 -18
  32. data/features/support/fixtures/vcr/Flickr/Generate_Flickr_YAML_with_lookups.yml +25 -19
  33. data/features/support/fixtures/vcr/Flickr_album/Generate_Flickr_YAML_for_an_album.yml +1438 -193
  34. data/features/support/fixtures/vcr/Handle_comments/Handle_comments_in_a_source_file.yml +23 -100
  35. data/features/support/fixtures/vcr/Missing_or_bad_credentials/Bad_credentials_for_multiple_services.yml +15 -15
  36. data/features/support/fixtures/vcr/Set_Flickr_picturesize/Generate_Flickr_YAML.yml +24 -18
  37. data/features/support/fixtures/vcr/Soundcloud/Generate_SoundCloud_YAML.yml +9 -8
  38. data/features/support/fixtures/vcr/Soundcloud/Generate_SoundCloud_YAML_for_multiple_tracks.yml +14 -14
  39. data/features/support/fixtures/vcr/Soundcloud_set/Generate_YAML_for_a_SoundCloud_set.yml +41 -40
  40. data/features/support/fixtures/vcr/Vimeo/Generate_Vimeo_YAML.yml +8 -8
  41. data/features/support/fixtures/vcr/Vimeo_albums/Generate_YAML_for_a_Vimeo_album.yml +38 -38
  42. data/features/support/fixtures/vcr/YouTube/Generate_YouTube_YAML.yml +873 -873
  43. data/features/support/fixtures/vcr/YouTube_playlists/Generate_YAML_for_a_YouTube_playlist.yml +9108 -1923
  44. data/features/support/hooks.rb +8 -0
  45. data/features/youtube-playlist.feature +0 -2
  46. data/lib/purdie.rb +2 -8
  47. data/lib/purdie/bernard.rb +7 -60
  48. data/lib/purdie/cli.rb +1 -1
  49. data/lib/purdie/config.rb +17 -8
  50. data/lib/purdie/helpers.rb +8 -0
  51. data/lib/purdie/ingester.rb +16 -16
  52. data/lib/purdie/item.rb +36 -0
  53. data/lib/purdie/resolver.rb +15 -0
  54. data/lib/purdie/services/soundcloud.rb +1 -1
  55. data/lib/purdie/source_list.rb +54 -16
  56. data/lib/purdie/version.rb +1 -1
  57. data/purdie.gemspec +19 -19
  58. data/spec/bernard_spec.rb +30 -0
  59. data/spec/config_spec.rb +4 -4
  60. data/spec/item_spec.rb +46 -0
  61. data/spec/resolver_spec.rb +40 -0
  62. data/spec/services/youtube_spec.rb +1 -1
  63. data/spec/source_list_spec.rb +59 -34
  64. data/spec/spec_helper.rb +1 -1
  65. data/spec/support/fixtures/output-generator +2 -0
  66. data/spec/support/fixtures/youtube.tubes +1 -0
  67. data/spec/vcr/Purdie_Bernard/deals_with_YouTube.yml +9686 -0
  68. data/spec/vcr/Purdie_Bernard/processes_files.yml +570 -0
  69. data/spec/vcr/Purdie_Item/populates_itself.yml +182 -0
  70. data/spec/vcr/Purdie_Resolver/resolves_a_Flickr_set.yml +772 -0
  71. data/spec/vcr/Purdie_Resolver/resolves_a_SoundCloud_set.yml +103 -0
  72. data/spec/vcr/Purdie_Resolver/resolves_a_YouTube_playlist.yml +970 -0
  73. data/spec/vcr/Purdie_SourceList/constructs_a_list_from_a_set_URL.yml +772 -0
  74. data/spec/vcr/Purdie_SourceList/make_output/actually_makes_output.yml +526 -0
  75. data/spec/vcr/Purdie_SourceList/process_its_items/processes_items.yml +210 -0
  76. data/spec/vcr/Purdie_SourceList/resolve_sets/constructs_a_list_from_a_set_URL.yml +95 -77
  77. metadata +78 -22
  78. data/features/flickr-alternative-outfile.feature +0 -29
  79. data/features/purdie.feature +0 -48
@@ -15,8 +15,8 @@ http_interactions:
15
15
  - FlickRaw/0.9.8
16
16
  Authorization:
17
17
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
18
- oauth_nonce="LsukKQ%2FiWlVraM2EcXR7OqzVKeaNMb%2FqYGZiqVpPAFs%3D", oauth_signature="<FLICKR_SECRET>%26",
19
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093994", oauth_token="",
18
+ oauth_nonce="DSMdkrbuf5voCDB47R%2BsUiJJbJloDv5hW%2FQdpC2j9v8%3D", oauth_signature="<FLICKR_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878401", oauth_token="",
20
20
  oauth_version="1.0"
21
21
  Content-Type:
22
22
  - application/x-www-form-urlencoded
@@ -26,7 +26,7 @@ http_interactions:
26
26
  message: OK
27
27
  headers:
28
28
  Date:
29
- - Wed, 11 Mar 2015 17:13:14 GMT
29
+ - Wed, 01 Apr 2015 08:53:19 GMT
30
30
  Content-Type:
31
31
  - application/json
32
32
  Content-Length:
@@ -38,16 +38,18 @@ http_interactions:
38
38
  Cache-Control:
39
39
  - private
40
40
  X-Served-By:
41
- - www49.flickr.bf1.yahoo.com
41
+ - www29.flickr.bf1.yahoo.com
42
42
  Vary:
43
43
  - Accept-Encoding
44
44
  Age:
45
45
  - '0'
46
46
  Via:
47
- - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
- http/1.1 r11.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
47
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r20.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
49
49
  Server:
50
50
  - ATS
51
+ Strict-Transport-Security:
52
+ - max-age=259200
51
53
  Connection:
52
54
  - keep-alive
53
55
  body:
@@ -55,10 +57,10 @@ http_interactions:
55
57
  string: '{"photo":{"id":"15631479625","secret":"b6168ee903","server":"3933","farm":4,"dateuploaded":"1414326010","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"3191340cdb","originalformat":"jpg","owner":{"nsid":"128943844@N06","username":"rawfunkmaharishi","realname":"Raw
56
58
  Funk Maharishi","location":"","iconserver":"3933","iconfarm":4,"path_alias":"rawfunkmaharishi"},"title":{"_content":"The
57
59
  Comedy, October 2014"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1414326010","taken":"2014-10-22
58
- 15:54:24","takengranularity":"0","takenunknown":"0","lastupdate":"1416111853"},"views":"94","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[{"id":"128898522-15631479625-1422028","author":"128943844@N06","authorname":"rawfunkmaharishi","raw":"the
60
+ 15:54:24","takengranularity":"0","takenunknown":"0","lastupdate":"1416111853"},"views":"96","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[{"id":"128898522-15631479625-1422028","author":"128943844@N06","authorname":"rawfunkmaharishi","raw":"the
59
61
  comedy","_content":"thecomedy","machine_tag":0},{"id":"128898522-15631479625-17975","author":"128943844@N06","authorname":"rawfunkmaharishi","raw":"gigs","_content":"gigs","machine_tag":0},{"id":"128898522-15631479625-228989594","author":"128943844@N06","authorname":"rawfunkmaharishi","raw":"photographer:kim","_content":"photographerkim","machine_tag":0}]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/rawfunkmaharishi\/15631479625\/"}]},"media":"photo"},"stat":"ok"}'
60
62
  http_version:
61
- recorded_at: Wed, 11 Mar 2015 17:13:14 GMT
63
+ recorded_at: Wed, 01 Apr 2015 08:53:21 GMT
62
64
  - request:
63
65
  method: post
64
66
  uri: https://api.flickr.com/services/rest/
@@ -74,8 +76,8 @@ http_interactions:
74
76
  - FlickRaw/0.9.8
75
77
  Authorization:
76
78
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
77
- oauth_nonce="nAuJ2t3Fy6mPHMkavh1sZyPM%2BQFA%2Fcuzd5XqtOibC1g%3D", oauth_signature="<FLICKR_SECRET>%26",
78
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093994", oauth_token="",
79
+ oauth_nonce="vxcsfNLjpwRZj2lTkpQh5GV3uhKCzPxdr5YQAcrXYaY%3D", oauth_signature="<FLICKR_SECRET>%26",
80
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878401", oauth_token="",
79
81
  oauth_version="1.0"
80
82
  Content-Type:
81
83
  - application/x-www-form-urlencoded
@@ -85,11 +87,11 @@ http_interactions:
85
87
  message: OK
86
88
  headers:
87
89
  Date:
88
- - Wed, 11 Mar 2015 17:13:15 GMT
90
+ - Wed, 01 Apr 2015 08:53:19 GMT
89
91
  Content-Type:
90
92
  - application/json
91
93
  Content-Length:
92
- - '314'
94
+ - '371'
93
95
  P3p:
94
96
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
95
97
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -97,16 +99,18 @@ http_interactions:
97
99
  Cache-Control:
98
100
  - private
99
101
  X-Served-By:
100
- - www29.flickr.bf1.yahoo.com
102
+ - www231.flickr.bf1.yahoo.com
101
103
  Vary:
102
104
  - Accept-Encoding
103
105
  Age:
104
- - '1'
106
+ - '2'
105
107
  Via:
106
- - http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
107
- http/1.1 r02.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
108
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
109
+ http/1.1 r06.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
108
110
  Server:
109
111
  - ATS
112
+ Strict-Transport-Security:
113
+ - max-age=259200
110
114
  Connection:
111
115
  - keep-alive
112
116
  body:
@@ -119,7 +123,9 @@ http_interactions:
119
123
  License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
120
124
  License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
121
125
  known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
122
- States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"}]},"stat":"ok"}'
126
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
127
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
128
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
123
129
  http_version:
124
- recorded_at: Wed, 11 Mar 2015 17:13:15 GMT
130
+ recorded_at: Wed, 01 Apr 2015 08:53:22 GMT
125
131
  recorded_with: VCR 2.9.3
@@ -15,8 +15,8 @@ http_interactions:
15
15
  - FlickRaw/0.9.8
16
16
  Authorization:
17
17
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
18
- oauth_nonce="E5oFVY8vHIgK%2F3%2F2X7ruR9tmXwkYtK1g6HatKZhfidg%3D", oauth_signature="<FLICKR_SECRET>%26",
19
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426624422", oauth_token="",
18
+ oauth_nonce="t%2FbGjfwiWSsHuPub%2FUSfPs7BBo%2BQkytihYAaH49RLRE%3D", oauth_signature="<FLICKR_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878400", oauth_token="",
20
20
  oauth_version="1.0"
21
21
  Content-Type:
22
22
  - application/x-www-form-urlencoded
@@ -26,7 +26,7 @@ http_interactions:
26
26
  message: OK
27
27
  headers:
28
28
  Date:
29
- - Tue, 17 Mar 2015 20:33:43 GMT
29
+ - Wed, 01 Apr 2015 08:53:19 GMT
30
30
  Content-Type:
31
31
  - application/json
32
32
  Content-Length:
@@ -38,25 +38,27 @@ http_interactions:
38
38
  Cache-Control:
39
39
  - private
40
40
  X-Served-By:
41
- - www260.flickr.bf1.yahoo.com
41
+ - www284.flickr.bf1.yahoo.com
42
42
  Vary:
43
43
  - Accept-Encoding
44
44
  Age:
45
- - '0'
45
+ - '2'
46
46
  Via:
47
- - http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
- http/1.1 r12.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
47
+ - http/1.1 fts115.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r14.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
49
49
  Server:
50
50
  - ATS
51
+ Strict-Transport-Security:
52
+ - max-age=259200
51
53
  Connection:
52
54
  - keep-alive
53
55
  body:
54
56
  encoding: ASCII-8BIT
55
57
  string: '{"photo":{"id":"16393865760","secret":"bfbfc1c267","server":"7395","farm":8,"dateuploaded":"1424360186","isfavorite":0,"license":"2","safety_level":"0","rotation":0,"originalsecret":"72a64c9506","originalformat":"jpg","owner":{"nsid":"54115632@N00","username":"cluttercup","realname":"Jane
56
58
  Dickson","location":"London, UK","iconserver":"7338","iconfarm":8,"path_alias":"cluttercup"},"title":{"_content":""},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1424360186","taken":"2015-02-18
57
- 16:57:45","takengranularity":"0","takenunknown":"0","lastupdate":"1424360361"},"views":"21","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/cluttercup\/16393865760\/"}]},"media":"photo"},"stat":"ok"}'
59
+ 16:57:45","takengranularity":"0","takenunknown":"0","lastupdate":"1424360361"},"views":"23","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/cluttercup\/16393865760\/"}]},"media":"photo"},"stat":"ok"}'
58
60
  http_version:
59
- recorded_at: Tue, 17 Mar 2015 20:33:43 GMT
61
+ recorded_at: Wed, 01 Apr 2015 08:53:21 GMT
60
62
  - request:
61
63
  method: post
62
64
  uri: https://api.flickr.com/services/rest/
@@ -72,8 +74,8 @@ http_interactions:
72
74
  - FlickRaw/0.9.8
73
75
  Authorization:
74
76
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
75
- oauth_nonce="x3EIm03Bux4MjBsZXkHnVMlWUbaHDfF7Pd0ho%2B1dJGI%3D", oauth_signature="<FLICKR_SECRET>%26",
76
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426624423", oauth_token="",
77
+ oauth_nonce="O%2BPLTXfu67GGVUMOoHofo4skE9jeLqF0U9TmUr2iabA%3D", oauth_signature="<FLICKR_SECRET>%26",
78
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878401", oauth_token="",
77
79
  oauth_version="1.0"
78
80
  Content-Type:
79
81
  - application/x-www-form-urlencoded
@@ -83,11 +85,11 @@ http_interactions:
83
85
  message: OK
84
86
  headers:
85
87
  Date:
86
- - Tue, 17 Mar 2015 20:33:43 GMT
88
+ - Wed, 01 Apr 2015 08:53:19 GMT
87
89
  Content-Type:
88
90
  - application/json
89
91
  Content-Length:
90
- - '314'
92
+ - '371'
91
93
  P3p:
92
94
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
93
95
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -95,16 +97,18 @@ http_interactions:
95
97
  Cache-Control:
96
98
  - private
97
99
  X-Served-By:
98
- - www58.flickr.bf1.yahoo.com
100
+ - www45.flickr.bf1.yahoo.com
99
101
  Vary:
100
102
  - Accept-Encoding
101
103
  Age:
102
- - '2'
104
+ - '0'
103
105
  Via:
104
- - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
105
- http/1.1 r10.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
106
+ - http/1.1 fts113.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
107
+ http/1.1 r14.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
106
108
  Server:
107
109
  - ATS
110
+ Strict-Transport-Security:
111
+ - max-age=259200
108
112
  Connection:
109
113
  - keep-alive
110
114
  body:
@@ -117,7 +121,9 @@ http_interactions:
117
121
  License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
118
122
  License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
119
123
  known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
120
- States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"}]},"stat":"ok"}'
124
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
125
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
126
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
121
127
  http_version:
122
- recorded_at: Tue, 17 Mar 2015 20:33:43 GMT
128
+ recorded_at: Wed, 01 Apr 2015 08:53:21 GMT
123
129
  recorded_with: VCR 2.9.3
@@ -15,8 +15,8 @@ http_interactions:
15
15
  - FlickRaw/0.9.8
16
16
  Authorization:
17
17
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
18
- oauth_nonce="oY1%2BqJfSLYNrOFZGqDXwbd93iQO3WhMM1R1TW8%2F12qo%3D", oauth_signature="<FLICKR_SECRET>%26",
19
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093986", oauth_token="",
18
+ oauth_nonce="2%2Ffbn7ZacQ90aow7vWm6nFSoLeSDa7I2H9GNGaeEYLI%3D", oauth_signature="<FLICKR_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878387", oauth_token="",
20
20
  oauth_version="1.0"
21
21
  Content-Type:
22
22
  - application/x-www-form-urlencoded
@@ -26,11 +26,11 @@ http_interactions:
26
26
  message: OK
27
27
  headers:
28
28
  Date:
29
- - Wed, 11 Mar 2015 17:13:07 GMT
29
+ - Wed, 01 Apr 2015 08:53:05 GMT
30
30
  Content-Type:
31
31
  - application/json
32
32
  Content-Length:
33
- - '476'
33
+ - '569'
34
34
  P3p:
35
35
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
36
36
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -38,16 +38,18 @@ http_interactions:
38
38
  Cache-Control:
39
39
  - private
40
40
  X-Served-By:
41
- - www244.flickr.bf1.yahoo.com
41
+ - www288.flickr.bf1.yahoo.com
42
42
  Vary:
43
43
  - Accept-Encoding
44
44
  Age:
45
- - '1'
45
+ - '2'
46
46
  Via:
47
- - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
- http/1.1 r07.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
47
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r21.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
49
49
  Server:
50
50
  - ATS
51
+ Strict-Transport-Security:
52
+ - max-age=259200
51
53
  Connection:
52
54
  - keep-alive
53
55
  body:
@@ -57,10 +59,12 @@ http_interactions:
57
59
  farm","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16388723891","secret":"10a4a8e745","server":"7382","farm":8,"title":"Cucamelon","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16308619689","secret":"41143c6dbb","server":"7327","farm":8,"title":"Potato
58
60
  kit","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16367228619","secret":"3af2aba147","server":"8660","farm":9,"title":"Embothrium
59
61
  seedling","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16752302412","secret":"d80b27c8dc","server":"8707","farm":9,"title":"Growhouse","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16752239531","secret":"2bcaa35495","server":"7651","farm":8,"title":"Patio
60
- pots","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0}],"page":1,"per_page":500,"perpage":500,"pages":1,"total":"8","title":"Garden
62
+ pots","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16781381829","secret":"5350c41a12","server":"8717","farm":9,"title":"Patio
63
+ pots","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16794930739","secret":"437b5cf887","server":"8733","farm":9,"title":"Patio
64
+ pots","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16979820102","secret":"e4dca71af6","server":"8705","farm":9,"title":"Patio","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16773754717","secret":"fc733f56c2","server":"7622","farm":8,"title":"Senettis","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0}],"page":1,"per_page":500,"perpage":500,"pages":1,"total":"12","title":"Garden
61
65
  2015"},"stat":"ok"}'
62
66
  http_version:
63
- recorded_at: Wed, 11 Mar 2015 17:13:07 GMT
67
+ recorded_at: Wed, 01 Apr 2015 08:53:08 GMT
64
68
  - request:
65
69
  method: post
66
70
  uri: https://api.flickr.com/services/rest/
@@ -76,8 +80,8 @@ http_interactions:
76
80
  - FlickRaw/0.9.8
77
81
  Authorization:
78
82
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
79
- oauth_nonce="HWVuQMitFCuzM136M6IeMX2wepnvIrt1gyx7DKKQS5g%3D", oauth_signature="<FLICKR_SECRET>%26",
80
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093987", oauth_token="",
83
+ oauth_nonce="1wHKAMdt50ol6o%2BuibEcURH7ds6Zzr5Ev1gZbeJGty4%3D", oauth_signature="<FLICKR_SECRET>%26",
84
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878388", oauth_token="",
81
85
  oauth_version="1.0"
82
86
  Content-Type:
83
87
  - application/x-www-form-urlencoded
@@ -87,7 +91,7 @@ http_interactions:
87
91
  message: OK
88
92
  headers:
89
93
  Date:
90
- - Wed, 11 Mar 2015 17:13:07 GMT
94
+ - Wed, 01 Apr 2015 08:53:06 GMT
91
95
  Content-Type:
92
96
  - application/json
93
97
  Content-Length:
@@ -99,25 +103,27 @@ http_interactions:
99
103
  Cache-Control:
100
104
  - private
101
105
  X-Served-By:
102
- - www17.flickr.bf1.yahoo.com
106
+ - www16.flickr.bf1.yahoo.com
103
107
  Vary:
104
108
  - Accept-Encoding
105
109
  Age:
106
110
  - '0'
107
111
  Via:
108
- - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
109
- http/1.1 r08.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
112
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
113
+ http/1.1 r05.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
110
114
  Server:
111
115
  - ATS
116
+ Strict-Transport-Security:
117
+ - max-age=259200
112
118
  Connection:
113
119
  - keep-alive
114
120
  body:
115
121
  encoding: ASCII-8BIT
116
122
  string: '{"photo":{"id":"16252009191","secret":"ea2d06e6bb","server":"7506","farm":8,"dateuploaded":"1420982656","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dd0b6e4274","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"First
117
123
  planting of the year"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1420982656","taken":"2015-01-11
118
- 14:22:47","takengranularity":"0","takenunknown":"0","lastupdate":"1420982715"},"views":"166","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16252009191\/"}]},"media":"photo"},"stat":"ok"}'
124
+ 14:22:47","takengranularity":"0","takenunknown":"0","lastupdate":"1420982715"},"views":"169","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16252009191\/"}]},"media":"photo"},"stat":"ok"}'
119
125
  http_version:
120
- recorded_at: Wed, 11 Mar 2015 17:13:07 GMT
126
+ recorded_at: Wed, 01 Apr 2015 08:53:08 GMT
121
127
  - request:
122
128
  method: post
123
129
  uri: https://api.flickr.com/services/rest/
@@ -133,8 +139,8 @@ http_interactions:
133
139
  - FlickRaw/0.9.8
134
140
  Authorization:
135
141
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
136
- oauth_nonce="83L6%2FnnUDh9tU9jvqnB9Tm8YKhcC3QOjBKfgjyDooM4%3D", oauth_signature="<FLICKR_SECRET>%26",
137
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093987", oauth_token="",
142
+ oauth_nonce="UeEV8djfOeu%2B8w%2B6S4ofOfFcpx0%2B6AgQMoAXZ1PSoo0%3D", oauth_signature="<FLICKR_SECRET>%26",
143
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878388", oauth_token="",
138
144
  oauth_version="1.0"
139
145
  Content-Type:
140
146
  - application/x-www-form-urlencoded
@@ -144,11 +150,11 @@ http_interactions:
144
150
  message: OK
145
151
  headers:
146
152
  Date:
147
- - Wed, 11 Mar 2015 17:13:07 GMT
153
+ - Wed, 01 Apr 2015 08:53:06 GMT
148
154
  Content-Type:
149
155
  - application/json
150
156
  Content-Length:
151
- - '544'
157
+ - '543'
152
158
  P3p:
153
159
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
154
160
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -156,24 +162,26 @@ http_interactions:
156
162
  Cache-Control:
157
163
  - private
158
164
  X-Served-By:
159
- - www289.flickr.bf1.yahoo.com
165
+ - www263.flickr.bf1.yahoo.com
160
166
  Vary:
161
167
  - Accept-Encoding
162
168
  Age:
163
169
  - '0'
164
170
  Via:
165
- - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
166
- http/1.1 r20.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
171
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
172
+ http/1.1 r16.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
167
173
  Server:
168
174
  - ATS
175
+ Strict-Transport-Security:
176
+ - max-age=259200
169
177
  Connection:
170
178
  - keep-alive
171
179
  body:
172
180
  encoding: ASCII-8BIT
173
181
  string: '{"photo":{"id":"16308144622","secret":"4822b81b0e","server":"7480","farm":8,"dateuploaded":"1421591962","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"fafedaf4a8","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Seedlings"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1421591962","taken":"2015-01-18
174
- 15:31:34","takengranularity":"0","takenunknown":"0","lastupdate":"1421592677"},"views":"175","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308144622\/"}]},"media":"photo"},"stat":"ok"}'
182
+ 15:31:34","takengranularity":"0","takenunknown":"0","lastupdate":"1421592677"},"views":"181","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308144622\/"}]},"media":"photo"},"stat":"ok"}'
175
183
  http_version:
176
- recorded_at: Wed, 11 Mar 2015 17:13:07 GMT
184
+ recorded_at: Wed, 01 Apr 2015 08:53:08 GMT
177
185
  - request:
178
186
  method: post
179
187
  uri: https://api.flickr.com/services/rest/
@@ -189,8 +197,8 @@ http_interactions:
189
197
  - FlickRaw/0.9.8
190
198
  Authorization:
191
199
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
192
- oauth_nonce="eBOFdV7U0juq3cMhKbKxMYrcWRYe7TpkHmM7KTJXDUY%3D", oauth_signature="<FLICKR_SECRET>%26",
193
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093987", oauth_token="",
200
+ oauth_nonce="x1%2BnrGTHqmsH6G6xUo7p%2BnFcipnoHZo1iaR5c%2FybgT0%3D", oauth_signature="<FLICKR_SECRET>%26",
201
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878388", oauth_token="",
194
202
  oauth_version="1.0"
195
203
  Content-Type:
196
204
  - application/x-www-form-urlencoded
@@ -200,7 +208,7 @@ http_interactions:
200
208
  message: OK
201
209
  headers:
202
210
  Date:
203
- - Wed, 11 Mar 2015 17:13:08 GMT
211
+ - Wed, 01 Apr 2015 08:53:06 GMT
204
212
  Content-Type:
205
213
  - application/json
206
214
  Content-Length:
@@ -212,25 +220,27 @@ http_interactions:
212
220
  Cache-Control:
213
221
  - private
214
222
  X-Served-By:
215
- - www334.flickr.bf1.yahoo.com
223
+ - www3.flickr.bf1.yahoo.com
216
224
  Vary:
217
225
  - Accept-Encoding
218
226
  Age:
219
- - '0'
227
+ - '2'
220
228
  Via:
221
- - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
222
- http/1.1 r10.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
229
+ - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
230
+ http/1.1 r06.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
223
231
  Server:
224
232
  - ATS
233
+ Strict-Transport-Security:
234
+ - max-age=259200
225
235
  Connection:
226
236
  - keep-alive
227
237
  body:
228
238
  encoding: ASCII-8BIT
229
239
  string: '{"photo":{"id":"16202827068","secret":"ee50e0cb1c","server":"7357","farm":8,"dateuploaded":"1422476532","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"06e6a96521","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Tomato
230
240
  farm"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476532","taken":"2015-01-28
231
- 21:19:32","takengranularity":"0","takenunknown":"0","lastupdate":"1422476584"},"views":"103","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16202827068\/"}]},"media":"photo"},"stat":"ok"}'
241
+ 21:19:32","takengranularity":"0","takenunknown":"0","lastupdate":"1422476584"},"views":"107","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16202827068\/"}]},"media":"photo"},"stat":"ok"}'
232
242
  http_version:
233
- recorded_at: Wed, 11 Mar 2015 17:13:08 GMT
243
+ recorded_at: Wed, 01 Apr 2015 08:53:09 GMT
234
244
  - request:
235
245
  method: post
236
246
  uri: https://api.flickr.com/services/rest/
@@ -246,8 +256,8 @@ http_interactions:
246
256
  - FlickRaw/0.9.8
247
257
  Authorization:
248
258
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
249
- oauth_nonce="b9W9Kb%2Fe%2FqF2kCaz9pnRKVvsAksPIo5Kuw6%2BqryuSyk%3D", oauth_signature="<FLICKR_SECRET>%26",
250
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093988", oauth_token="",
259
+ oauth_nonce="qAZgkVVP2VIrcJui31FmSa8PTLf55kLz6P6r8dgpEdo%3D", oauth_signature="<FLICKR_SECRET>%26",
260
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878389", oauth_token="",
251
261
  oauth_version="1.0"
252
262
  Content-Type:
253
263
  - application/x-www-form-urlencoded
@@ -257,11 +267,11 @@ http_interactions:
257
267
  message: OK
258
268
  headers:
259
269
  Date:
260
- - Wed, 11 Mar 2015 17:13:08 GMT
270
+ - Wed, 01 Apr 2015 08:53:07 GMT
261
271
  Content-Type:
262
272
  - application/json
263
273
  Content-Length:
264
- - '543'
274
+ - '541'
265
275
  P3p:
266
276
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
267
277
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -269,24 +279,26 @@ http_interactions:
269
279
  Cache-Control:
270
280
  - private
271
281
  X-Served-By:
272
- - bm-www930.flickr.bf1.yahoo.com
282
+ - www244.flickr.bf1.yahoo.com
273
283
  Vary:
274
284
  - Accept-Encoding
275
285
  Age:
276
286
  - '0'
277
287
  Via:
278
- - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
279
- http/1.1 r22.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
288
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
289
+ http/1.1 r15.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
280
290
  Server:
281
291
  - ATS
292
+ Strict-Transport-Security:
293
+ - max-age=259200
282
294
  Connection:
283
295
  - keep-alive
284
296
  body:
285
297
  encoding: ASCII-8BIT
286
298
  string: '{"photo":{"id":"16388723891","secret":"10a4a8e745","server":"7382","farm":8,"dateuploaded":"1422476602","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"203886b5a3","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Cucamelon"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476602","taken":"2015-01-28
287
- 21:19:45","takengranularity":"0","takenunknown":"0","lastupdate":"1422477672"},"views":"116","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16388723891\/"}]},"media":"photo"},"stat":"ok"}'
299
+ 21:19:45","takengranularity":"0","takenunknown":"0","lastupdate":"1422477672"},"views":"142","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16388723891\/"}]},"media":"photo"},"stat":"ok"}'
288
300
  http_version:
289
- recorded_at: Wed, 11 Mar 2015 17:13:08 GMT
301
+ recorded_at: Wed, 01 Apr 2015 08:53:09 GMT
290
302
  - request:
291
303
  method: post
292
304
  uri: https://api.flickr.com/services/rest/
@@ -302,8 +314,8 @@ http_interactions:
302
314
  - FlickRaw/0.9.8
303
315
  Authorization:
304
316
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
305
- oauth_nonce="7fTuymlltjmNVk1dQSREKoyMp%2BWFTfs0tmaxEfd3WiQ%3D", oauth_signature="<FLICKR_SECRET>%26",
306
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093988", oauth_token="",
317
+ oauth_nonce="1fgSt%2Bp%2FsMhNrM3QKwRbQRg%2BDQkmtjlSKoCrC1y2%2FvM%3D", oauth_signature="<FLICKR_SECRET>%26",
318
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878389", oauth_token="",
307
319
  oauth_version="1.0"
308
320
  Content-Type:
309
321
  - application/x-www-form-urlencoded
@@ -313,11 +325,11 @@ http_interactions:
313
325
  message: OK
314
326
  headers:
315
327
  Date:
316
- - Wed, 11 Mar 2015 17:13:09 GMT
328
+ - Wed, 01 Apr 2015 08:53:07 GMT
317
329
  Content-Type:
318
330
  - application/json
319
331
  Content-Length:
320
- - '545'
332
+ - '546'
321
333
  P3p:
322
334
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
323
335
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -325,25 +337,27 @@ http_interactions:
325
337
  Cache-Control:
326
338
  - private
327
339
  X-Served-By:
328
- - www298.flickr.bf1.yahoo.com
340
+ - www66.flickr.bf1.yahoo.com
329
341
  Vary:
330
342
  - Accept-Encoding
331
343
  Age:
332
- - '2'
344
+ - '0'
333
345
  Via:
334
- - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
335
- http/1.1 r03.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
346
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
347
+ http/1.1 r05.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
336
348
  Server:
337
349
  - ATS
350
+ Strict-Transport-Security:
351
+ - max-age=259200
338
352
  Connection:
339
353
  - keep-alive
340
354
  body:
341
355
  encoding: ASCII-8BIT
342
356
  string: '{"photo":{"id":"16308619689","secret":"41143c6dbb","server":"7327","farm":8,"dateuploaded":"1423599466","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dc11437dda","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Potato
343
357
  kit"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1423599466","taken":"2015-02-10
344
- 21:14:58","takengranularity":"0","takenunknown":"0","lastupdate":"1423601463"},"views":"75","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308619689\/"}]},"media":"photo"},"stat":"ok"}'
358
+ 21:14:58","takengranularity":"0","takenunknown":"0","lastupdate":"1423601463"},"views":"101","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308619689\/"}]},"media":"photo"},"stat":"ok"}'
345
359
  http_version:
346
- recorded_at: Wed, 11 Mar 2015 17:13:09 GMT
360
+ recorded_at: Wed, 01 Apr 2015 08:53:09 GMT
347
361
  - request:
348
362
  method: post
349
363
  uri: https://api.flickr.com/services/rest/
@@ -359,8 +373,8 @@ http_interactions:
359
373
  - FlickRaw/0.9.8
360
374
  Authorization:
361
375
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
362
- oauth_nonce="btk1fSOAgvZru8QqXP0g3hj6KA%2FIn4FDDu7EftdqwPs%3D", oauth_signature="<FLICKR_SECRET>%26",
363
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093989", oauth_token="",
376
+ oauth_nonce="1aJr22EaiSwpIrW4iRAjIeni92HSZ2MEA43uPfDekKI%3D", oauth_signature="<FLICKR_SECRET>%26",
377
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878389", oauth_token="",
364
378
  oauth_version="1.0"
365
379
  Content-Type:
366
380
  - application/x-www-form-urlencoded
@@ -370,11 +384,11 @@ http_interactions:
370
384
  message: OK
371
385
  headers:
372
386
  Date:
373
- - Wed, 11 Mar 2015 17:13:09 GMT
387
+ - Wed, 01 Apr 2015 08:53:08 GMT
374
388
  Content-Type:
375
389
  - application/json
376
390
  Content-Length:
377
- - '550'
391
+ - '551'
378
392
  P3p:
379
393
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
380
394
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -382,25 +396,27 @@ http_interactions:
382
396
  Cache-Control:
383
397
  - private
384
398
  X-Served-By:
385
- - www295.flickr.bf1.yahoo.com
399
+ - www287.flickr.bf1.yahoo.com
386
400
  Vary:
387
401
  - Accept-Encoding
388
402
  Age:
389
- - '0'
403
+ - '1'
390
404
  Via:
391
- - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
392
- http/1.1 r12.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
405
+ - http/1.1 fts120.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
406
+ http/1.1 r01.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
393
407
  Server:
394
408
  - ATS
409
+ Strict-Transport-Security:
410
+ - max-age=259200
395
411
  Connection:
396
412
  - keep-alive
397
413
  body:
398
414
  encoding: ASCII-8BIT
399
415
  string: '{"photo":{"id":"16367228619","secret":"3af2aba147","server":"8660","farm":9,"dateuploaded":"1424124245","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"7145f68aed","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Embothrium
400
416
  seedling"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1424124245","taken":"2015-02-16
401
- 23:03:06","takengranularity":"0","takenunknown":"0","lastupdate":"1424125294"},"views":"55","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16367228619\/"}]},"media":"photo"},"stat":"ok"}'
417
+ 23:03:06","takengranularity":"0","takenunknown":"0","lastupdate":"1424125294"},"views":"82","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16367228619\/"}]},"media":"photo"},"stat":"ok"}'
402
418
  http_version:
403
- recorded_at: Wed, 11 Mar 2015 17:13:09 GMT
419
+ recorded_at: Wed, 01 Apr 2015 08:53:10 GMT
404
420
  - request:
405
421
  method: post
406
422
  uri: https://api.flickr.com/services/rest/
@@ -416,8 +432,8 @@ http_interactions:
416
432
  - FlickRaw/0.9.8
417
433
  Authorization:
418
434
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
419
- oauth_nonce="aPZdjFQjiIWhPBoku2pOs%2F2VNvUahY72ed7GBEUjZQE%3D", oauth_signature="<FLICKR_SECRET>%26",
420
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093989", oauth_token="",
435
+ oauth_nonce="sTwQxuV%2B3rXe6FRJgKMbwy38MT7BPRZHqe%2FaH30iwtc%3D", oauth_signature="<FLICKR_SECRET>%26",
436
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878390", oauth_token="",
421
437
  oauth_version="1.0"
422
438
  Content-Type:
423
439
  - application/x-www-form-urlencoded
@@ -427,7 +443,7 @@ http_interactions:
427
443
  message: OK
428
444
  headers:
429
445
  Date:
430
- - Wed, 11 Mar 2015 17:13:09 GMT
446
+ - Wed, 01 Apr 2015 08:53:08 GMT
431
447
  Content-Type:
432
448
  - application/json
433
449
  Content-Length:
@@ -439,24 +455,26 @@ http_interactions:
439
455
  Cache-Control:
440
456
  - private
441
457
  X-Served-By:
442
- - www52.flickr.bf1.yahoo.com
458
+ - www266.flickr.bf1.yahoo.com
443
459
  Vary:
444
460
  - Accept-Encoding
445
461
  Age:
446
462
  - '0'
447
463
  Via:
448
- - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
449
- http/1.1 r15.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
464
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
465
+ http/1.1 r07.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
450
466
  Server:
451
467
  - ATS
468
+ Strict-Transport-Security:
469
+ - max-age=259200
452
470
  Connection:
453
471
  - keep-alive
454
472
  body:
455
473
  encoding: ASCII-8BIT
456
474
  string: '{"photo":{"id":"16752302412","secret":"d80b27c8dc","server":"8707","farm":9,"dateuploaded":"1425824636","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"b2e8dd6c5c","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Growhouse"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824636","taken":"2015-03-08
457
- 15:19:53","takengranularity":"0","takenunknown":"0","lastupdate":"1425825014"},"views":"33","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752302412\/"}]},"media":"photo"},"stat":"ok"}'
475
+ 15:19:53","takengranularity":"0","takenunknown":"0","lastupdate":"1425825014"},"views":"62","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752302412\/"}]},"media":"photo"},"stat":"ok"}'
458
476
  http_version:
459
- recorded_at: Wed, 11 Mar 2015 17:13:09 GMT
477
+ recorded_at: Wed, 01 Apr 2015 08:53:10 GMT
460
478
  - request:
461
479
  method: post
462
480
  uri: https://api.flickr.com/services/rest/
@@ -472,8 +490,8 @@ http_interactions:
472
490
  - FlickRaw/0.9.8
473
491
  Authorization:
474
492
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
475
- oauth_nonce="Suup3Z4qJljCe0hBnOH76t%2FnAyjBtie66rVYIC4Gvho%3D", oauth_signature="<FLICKR_SECRET>%26",
476
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093989", oauth_token="",
493
+ oauth_nonce="RUma6KBwvGMHAxUXY%2F1jwLIzdpkbzrVsXp8VG0YdnjY%3D", oauth_signature="<FLICKR_SECRET>%26",
494
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878390", oauth_token="",
477
495
  oauth_version="1.0"
478
496
  Content-Type:
479
497
  - application/x-www-form-urlencoded
@@ -483,7 +501,7 @@ http_interactions:
483
501
  message: OK
484
502
  headers:
485
503
  Date:
486
- - Wed, 11 Mar 2015 17:13:10 GMT
504
+ - Wed, 01 Apr 2015 08:53:08 GMT
487
505
  Content-Type:
488
506
  - application/json
489
507
  Content-Length:
@@ -495,16 +513,18 @@ http_interactions:
495
513
  Cache-Control:
496
514
  - private
497
515
  X-Served-By:
498
- - www266.flickr.bf1.yahoo.com
516
+ - www259.flickr.bf1.yahoo.com
499
517
  Vary:
500
518
  - Accept-Encoding
501
519
  Age:
502
- - '2'
520
+ - '0'
503
521
  Via:
504
- - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
505
- http/1.1 r12.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
522
+ - http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
523
+ http/1.1 r14.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
506
524
  Server:
507
525
  - ATS
526
+ Strict-Transport-Security:
527
+ - max-age=259200
508
528
  Connection:
509
529
  - keep-alive
510
530
  body:
@@ -512,15 +532,15 @@ http_interactions:
512
532
  string: '{"photo":{"id":"16752239531","secret":"2bcaa35495","server":"7651","farm":8,"dateuploaded":"1425824917","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"6f79696344","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
513
533
  pots"},"description":{"_content":"Chives, tarragon, sage, thyme, rosemary,
514
534
  spinachy things, chocolate mint, potato bags\n"},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824917","taken":"2015-03-08
515
- 15:20:22","takengranularity":"0","takenunknown":"0","lastupdate":"1425825005"},"views":"32","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752239531\/"}]},"media":"photo"},"stat":"ok"}'
535
+ 15:20:22","takengranularity":"0","takenunknown":"0","lastupdate":"1425825005"},"views":"67","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752239531\/"}]},"media":"photo"},"stat":"ok"}'
516
536
  http_version:
517
- recorded_at: Wed, 11 Mar 2015 17:13:10 GMT
537
+ recorded_at: Wed, 01 Apr 2015 08:53:10 GMT
518
538
  - request:
519
539
  method: post
520
540
  uri: https://api.flickr.com/services/rest/
521
541
  body:
522
542
  encoding: US-ASCII
523
- string: photo_id=16252009191&method=flickr.photos.getInfo&format=json&nojsoncallback=1
543
+ string: photo_id=16781381829&method=flickr.photos.getInfo&format=json&nojsoncallback=1
524
544
  headers:
525
545
  Accept-Encoding:
526
546
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -530,8 +550,8 @@ http_interactions:
530
550
  - FlickRaw/0.9.8
531
551
  Authorization:
532
552
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
533
- oauth_nonce="dc13b3XoliZ8yxvjzOcOPVUqx9wvHX5qi4BeYgN%2B5dQ%3D", oauth_signature="<FLICKR_SECRET>%26",
534
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093990", oauth_token="",
553
+ oauth_nonce="0zIi8QNo2A2RuPunXDQyPtIhCdQginUvOeJ5EMdSXyo%3D", oauth_signature="<FLICKR_SECRET>%26",
554
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878390", oauth_token="",
535
555
  oauth_version="1.0"
536
556
  Content-Type:
537
557
  - application/x-www-form-urlencoded
@@ -541,11 +561,129 @@ http_interactions:
541
561
  message: OK
542
562
  headers:
543
563
  Date:
544
- - Wed, 11 Mar 2015 17:13:11 GMT
564
+ - Wed, 01 Apr 2015 08:53:09 GMT
545
565
  Content-Type:
546
566
  - application/json
547
567
  Content-Length:
548
- - '555'
568
+ - '545'
569
+ P3p:
570
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
571
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
572
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
573
+ Cache-Control:
574
+ - private
575
+ X-Served-By:
576
+ - www29.flickr.bf1.yahoo.com
577
+ Vary:
578
+ - Accept-Encoding
579
+ Age:
580
+ - '1'
581
+ Via:
582
+ - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
583
+ http/1.1 r15.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
584
+ Server:
585
+ - ATS
586
+ Strict-Transport-Security:
587
+ - max-age=259200
588
+ Connection:
589
+ - keep-alive
590
+ body:
591
+ encoding: ASCII-8BIT
592
+ string: '{"photo":{"id":"16781381829","secret":"5350c41a12","server":"8717","farm":9,"dateuploaded":"1427644206","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"2ba6bcdc36","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
593
+ pots"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427644206","taken":"2015-03-29
594
+ 16:46:33","takengranularity":"0","takenunknown":"0","lastupdate":"1427644512"},"views":"34","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16781381829\/"}]},"media":"photo"},"stat":"ok"}'
595
+ http_version:
596
+ recorded_at: Wed, 01 Apr 2015 08:53:11 GMT
597
+ - request:
598
+ method: post
599
+ uri: https://api.flickr.com/services/rest/
600
+ body:
601
+ encoding: US-ASCII
602
+ string: photo_id=16794930739&method=flickr.photos.getInfo&format=json&nojsoncallback=1
603
+ headers:
604
+ Accept-Encoding:
605
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
606
+ Accept:
607
+ - "*/*"
608
+ User-Agent:
609
+ - FlickRaw/0.9.8
610
+ Authorization:
611
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
612
+ oauth_nonce="R2DiPX2e9rEYvOpgtAp5EZsljp20Vk2BqYTuQPRdJaM%3D", oauth_signature="<FLICKR_SECRET>%26",
613
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878391", oauth_token="",
614
+ oauth_version="1.0"
615
+ Content-Type:
616
+ - application/x-www-form-urlencoded
617
+ response:
618
+ status:
619
+ code: 200
620
+ message: OK
621
+ headers:
622
+ Date:
623
+ - Wed, 01 Apr 2015 08:53:09 GMT
624
+ Content-Type:
625
+ - application/json
626
+ Content-Length:
627
+ - '544'
628
+ P3p:
629
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
630
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
631
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
632
+ Cache-Control:
633
+ - private
634
+ X-Served-By:
635
+ - www279.flickr.bf1.yahoo.com
636
+ Vary:
637
+ - Accept-Encoding
638
+ Age:
639
+ - '0'
640
+ Via:
641
+ - http/1.1 fts110.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
642
+ http/1.1 r13.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
643
+ Server:
644
+ - ATS
645
+ Strict-Transport-Security:
646
+ - max-age=259200
647
+ Connection:
648
+ - keep-alive
649
+ body:
650
+ encoding: ASCII-8BIT
651
+ string: '{"photo":{"id":"16794930739","secret":"437b5cf887","server":"8733","farm":9,"dateuploaded":"1427740028","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"10281acd66","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
652
+ pots"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427740028","taken":"2015-03-29
653
+ 16:46:48","takengranularity":"0","takenunknown":"0","lastupdate":"1427740128"},"views":"29","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16794930739\/"}]},"media":"photo"},"stat":"ok"}'
654
+ http_version:
655
+ recorded_at: Wed, 01 Apr 2015 08:53:11 GMT
656
+ - request:
657
+ method: post
658
+ uri: https://api.flickr.com/services/rest/
659
+ body:
660
+ encoding: US-ASCII
661
+ string: photo_id=16979820102&method=flickr.photos.getInfo&format=json&nojsoncallback=1
662
+ headers:
663
+ Accept-Encoding:
664
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
665
+ Accept:
666
+ - "*/*"
667
+ User-Agent:
668
+ - FlickRaw/0.9.8
669
+ Authorization:
670
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
671
+ oauth_nonce="hXPg78n6%2FPHYn9gUeMro%2BQGumkG9KqhllSboyWGxjLU%3D", oauth_signature="<FLICKR_SECRET>%26",
672
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878391", oauth_token="",
673
+ oauth_version="1.0"
674
+ Content-Type:
675
+ - application/x-www-form-urlencoded
676
+ response:
677
+ status:
678
+ code: 200
679
+ message: OK
680
+ headers:
681
+ Date:
682
+ - Wed, 01 Apr 2015 08:53:09 GMT
683
+ Content-Type:
684
+ - application/json
685
+ Content-Length:
686
+ - '539'
549
687
  P3p:
550
688
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
551
689
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -553,31 +691,32 @@ http_interactions:
553
691
  Cache-Control:
554
692
  - private
555
693
  X-Served-By:
556
- - www315.flickr.bf1.yahoo.com
694
+ - www21.flickr.bf1.yahoo.com
557
695
  Vary:
558
696
  - Accept-Encoding
559
697
  Age:
560
698
  - '2'
561
699
  Via:
562
- - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
563
- http/1.1 r11.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
700
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
701
+ http/1.1 r04.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
564
702
  Server:
565
703
  - ATS
704
+ Strict-Transport-Security:
705
+ - max-age=259200
566
706
  Connection:
567
707
  - keep-alive
568
708
  body:
569
709
  encoding: ASCII-8BIT
570
- string: '{"photo":{"id":"16252009191","secret":"ea2d06e6bb","server":"7506","farm":8,"dateuploaded":"1420982656","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dd0b6e4274","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"First
571
- planting of the year"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1420982656","taken":"2015-01-11
572
- 14:22:47","takengranularity":"0","takenunknown":"0","lastupdate":"1420982715"},"views":"166","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16252009191\/"}]},"media":"photo"},"stat":"ok"}'
710
+ string: '{"photo":{"id":"16979820102","secret":"e4dca71af6","server":"8705","farm":9,"dateuploaded":"1427740229","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"a913b471b0","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427740229","taken":"2015-03-29
711
+ 16:47:01","takengranularity":"0","takenunknown":"0","lastupdate":"1427740271"},"views":"32","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16979820102\/"}]},"media":"photo"},"stat":"ok"}'
573
712
  http_version:
574
- recorded_at: Wed, 11 Mar 2015 17:13:11 GMT
713
+ recorded_at: Wed, 01 Apr 2015 08:53:12 GMT
575
714
  - request:
576
715
  method: post
577
716
  uri: https://api.flickr.com/services/rest/
578
717
  body:
579
718
  encoding: US-ASCII
580
- string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
719
+ string: photo_id=16773754717&method=flickr.photos.getInfo&format=json&nojsoncallback=1
581
720
  headers:
582
721
  Accept-Encoding:
583
722
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -587,8 +726,8 @@ http_interactions:
587
726
  - FlickRaw/0.9.8
588
727
  Authorization:
589
728
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
590
- oauth_nonce="HJBhlDKKhS1qqXawyE%2FoW%2BlFlK5sMj5zqul6Pq%2FMcec%3D", oauth_signature="<FLICKR_SECRET>%26",
591
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093991", oauth_token="",
729
+ oauth_nonce="xkhP93rHWz0jRYvTyOLXHSGdj0nJmvv6DNB0FxFdjHE%3D", oauth_signature="<FLICKR_SECRET>%26",
730
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878392", oauth_token="",
592
731
  oauth_version="1.0"
593
732
  Content-Type:
594
733
  - application/x-www-form-urlencoded
@@ -598,11 +737,11 @@ http_interactions:
598
737
  message: OK
599
738
  headers:
600
739
  Date:
601
- - Wed, 11 Mar 2015 17:13:11 GMT
740
+ - Wed, 01 Apr 2015 08:53:10 GMT
602
741
  Content-Type:
603
742
  - application/json
604
743
  Content-Length:
605
- - '314'
744
+ - '538'
606
745
  P3p:
607
746
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
608
747
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -610,37 +749,32 @@ http_interactions:
610
749
  Cache-Control:
611
750
  - private
612
751
  X-Served-By:
613
- - www10.flickr.bf1.yahoo.com
752
+ - www339.flickr.bf1.yahoo.com
614
753
  Vary:
615
754
  - Accept-Encoding
616
755
  Age:
617
756
  - '0'
618
757
  Via:
619
758
  - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
620
- http/1.1 r07.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
759
+ http/1.1 r10.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
621
760
  Server:
622
761
  - ATS
762
+ Strict-Transport-Security:
763
+ - max-age=259200
623
764
  Connection:
624
765
  - keep-alive
625
766
  body:
626
767
  encoding: ASCII-8BIT
627
- string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
628
- License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
629
- License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
630
- License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
631
- License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
632
- License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
633
- License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
634
- known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
635
- States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"}]},"stat":"ok"}'
768
+ string: '{"photo":{"id":"16773754717","secret":"fc733f56c2","server":"7622","farm":8,"dateuploaded":"1427740100","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"434188e4af","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Senettis"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427740100","taken":"2015-03-29
769
+ 16:47:42","takengranularity":"0","takenunknown":"0","lastupdate":"1427740155"},"views":"25","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16773754717\/"}]},"media":"photo"},"stat":"ok"}'
636
770
  http_version:
637
- recorded_at: Wed, 11 Mar 2015 17:13:11 GMT
771
+ recorded_at: Wed, 01 Apr 2015 08:53:12 GMT
638
772
  - request:
639
773
  method: post
640
774
  uri: https://api.flickr.com/services/rest/
641
775
  body:
642
776
  encoding: US-ASCII
643
- string: photo_id=16308144622&method=flickr.photos.getInfo&format=json&nojsoncallback=1
777
+ string: photo_id=16252009191&method=flickr.photos.getInfo&format=json&nojsoncallback=1
644
778
  headers:
645
779
  Accept-Encoding:
646
780
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -650,8 +784,8 @@ http_interactions:
650
784
  - FlickRaw/0.9.8
651
785
  Authorization:
652
786
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
653
- oauth_nonce="pPjRelRyGhYDtt1vQPTLmkUxzY0BXdY%2FUpiMhPO7M8U%3D", oauth_signature="<FLICKR_SECRET>%26",
654
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093991", oauth_token="",
787
+ oauth_nonce="xwu%2Bk0CR64FCQ%2BnG%2BrX8ZbRmKpeGIO0MlGoXoSH1U3A%3D", oauth_signature="<FLICKR_SECRET>%26",
788
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878392", oauth_token="",
655
789
  oauth_version="1.0"
656
790
  Content-Type:
657
791
  - application/x-www-form-urlencoded
@@ -661,11 +795,11 @@ http_interactions:
661
795
  message: OK
662
796
  headers:
663
797
  Date:
664
- - Wed, 11 Mar 2015 17:13:11 GMT
798
+ - Wed, 01 Apr 2015 08:53:10 GMT
665
799
  Content-Type:
666
800
  - application/json
667
801
  Content-Length:
668
- - '544'
802
+ - '555'
669
803
  P3p:
670
804
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
671
805
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -673,30 +807,33 @@ http_interactions:
673
807
  Cache-Control:
674
808
  - private
675
809
  X-Served-By:
676
- - www259.flickr.bf1.yahoo.com
810
+ - www324.flickr.bf1.yahoo.com
677
811
  Vary:
678
812
  - Accept-Encoding
679
813
  Age:
680
814
  - '0'
681
815
  Via:
682
- - http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
683
- http/1.1 r01.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
816
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
817
+ http/1.1 r15.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
684
818
  Server:
685
819
  - ATS
820
+ Strict-Transport-Security:
821
+ - max-age=259200
686
822
  Connection:
687
823
  - keep-alive
688
824
  body:
689
825
  encoding: ASCII-8BIT
690
- string: '{"photo":{"id":"16308144622","secret":"4822b81b0e","server":"7480","farm":8,"dateuploaded":"1421591962","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"fafedaf4a8","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Seedlings"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1421591962","taken":"2015-01-18
691
- 15:31:34","takengranularity":"0","takenunknown":"0","lastupdate":"1421592677"},"views":"175","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308144622\/"}]},"media":"photo"},"stat":"ok"}'
826
+ string: '{"photo":{"id":"16252009191","secret":"ea2d06e6bb","server":"7506","farm":8,"dateuploaded":"1420982656","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dd0b6e4274","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"First
827
+ planting of the year"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1420982656","taken":"2015-01-11
828
+ 14:22:47","takengranularity":"0","takenunknown":"0","lastupdate":"1420982715"},"views":"169","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16252009191\/"}]},"media":"photo"},"stat":"ok"}'
692
829
  http_version:
693
- recorded_at: Wed, 11 Mar 2015 17:13:11 GMT
830
+ recorded_at: Wed, 01 Apr 2015 08:53:12 GMT
694
831
  - request:
695
832
  method: post
696
833
  uri: https://api.flickr.com/services/rest/
697
834
  body:
698
835
  encoding: US-ASCII
699
- string: photo_id=16202827068&method=flickr.photos.getInfo&format=json&nojsoncallback=1
836
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
700
837
  headers:
701
838
  Accept-Encoding:
702
839
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -706,8 +843,8 @@ http_interactions:
706
843
  - FlickRaw/0.9.8
707
844
  Authorization:
708
845
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
709
- oauth_nonce="RIHfj%2FIbgdV9wZ4kDatTznGZ9hlUFiZ9%2Ba7FhF33ixM%3D", oauth_signature="<FLICKR_SECRET>%26",
710
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093991", oauth_token="",
846
+ oauth_nonce="N3d9US5CET1xLaCUU3NkloScPv0J5TPRCnhgTZzDYl8%3D", oauth_signature="<FLICKR_SECRET>%26",
847
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878392", oauth_token="",
711
848
  oauth_version="1.0"
712
849
  Content-Type:
713
850
  - application/x-www-form-urlencoded
@@ -717,11 +854,11 @@ http_interactions:
717
854
  message: OK
718
855
  headers:
719
856
  Date:
720
- - Wed, 11 Mar 2015 17:13:12 GMT
857
+ - Wed, 01 Apr 2015 08:53:10 GMT
721
858
  Content-Type:
722
859
  - application/json
723
860
  Content-Length:
724
- - '542'
861
+ - '371'
725
862
  P3p:
726
863
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
727
864
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -729,31 +866,41 @@ http_interactions:
729
866
  Cache-Control:
730
867
  - private
731
868
  X-Served-By:
732
- - www261.flickr.bf1.yahoo.com
869
+ - www21.flickr.bf1.yahoo.com
733
870
  Vary:
734
871
  - Accept-Encoding
735
872
  Age:
736
- - '1'
873
+ - '0'
737
874
  Via:
738
- - http/1.1 fts120.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
739
- http/1.1 r14.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
875
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
876
+ http/1.1 r08.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
740
877
  Server:
741
878
  - ATS
879
+ Strict-Transport-Security:
880
+ - max-age=259200
742
881
  Connection:
743
882
  - keep-alive
744
883
  body:
745
884
  encoding: ASCII-8BIT
746
- string: '{"photo":{"id":"16202827068","secret":"ee50e0cb1c","server":"7357","farm":8,"dateuploaded":"1422476532","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"06e6a96521","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Tomato
747
- farm"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476532","taken":"2015-01-28
748
- 21:19:32","takengranularity":"0","takenunknown":"0","lastupdate":"1422476584"},"views":"103","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16202827068\/"}]},"media":"photo"},"stat":"ok"}'
885
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
886
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
887
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
888
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
889
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
890
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
891
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
892
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
893
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
894
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
895
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
749
896
  http_version:
750
- recorded_at: Wed, 11 Mar 2015 17:13:12 GMT
897
+ recorded_at: Wed, 01 Apr 2015 08:53:12 GMT
751
898
  - request:
752
899
  method: post
753
900
  uri: https://api.flickr.com/services/rest/
754
901
  body:
755
902
  encoding: US-ASCII
756
- string: photo_id=16388723891&method=flickr.photos.getInfo&format=json&nojsoncallback=1
903
+ string: photo_id=16308144622&method=flickr.photos.getInfo&format=json&nojsoncallback=1
757
904
  headers:
758
905
  Accept-Encoding:
759
906
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -763,8 +910,8 @@ http_interactions:
763
910
  - FlickRaw/0.9.8
764
911
  Authorization:
765
912
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
766
- oauth_nonce="kj0ouiUSpUJbZvh0PNEFc0VFFhCyx6vj1dnScnCBIoE%3D", oauth_signature="<FLICKR_SECRET>%26",
767
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093992", oauth_token="",
913
+ oauth_nonce="kziRF9bJ%2BHVGgUGMVwmFvY%2FQ4%2BGD8wSbL77%2BP9S%2BedQ%3D", oauth_signature="<FLICKR_SECRET>%26",
914
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878392", oauth_token="",
768
915
  oauth_version="1.0"
769
916
  Content-Type:
770
917
  - application/x-www-form-urlencoded
@@ -774,7 +921,7 @@ http_interactions:
774
921
  message: OK
775
922
  headers:
776
923
  Date:
777
- - Wed, 11 Mar 2015 17:13:12 GMT
924
+ - Wed, 01 Apr 2015 08:53:11 GMT
778
925
  Content-Type:
779
926
  - application/json
780
927
  Content-Length:
@@ -786,30 +933,32 @@ http_interactions:
786
933
  Cache-Control:
787
934
  - private
788
935
  X-Served-By:
789
- - www281.flickr.bf1.yahoo.com
936
+ - www33.flickr.bf1.yahoo.com
790
937
  Vary:
791
938
  - Accept-Encoding
792
939
  Age:
793
940
  - '0'
794
941
  Via:
795
- - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
796
- http/1.1 r17.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
942
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
943
+ http/1.1 r09.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
797
944
  Server:
798
945
  - ATS
946
+ Strict-Transport-Security:
947
+ - max-age=259200
799
948
  Connection:
800
949
  - keep-alive
801
950
  body:
802
951
  encoding: ASCII-8BIT
803
- string: '{"photo":{"id":"16388723891","secret":"10a4a8e745","server":"7382","farm":8,"dateuploaded":"1422476602","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"203886b5a3","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Cucamelon"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476602","taken":"2015-01-28
804
- 21:19:45","takengranularity":"0","takenunknown":"0","lastupdate":"1422477672"},"views":"116","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16388723891\/"}]},"media":"photo"},"stat":"ok"}'
952
+ string: '{"photo":{"id":"16308144622","secret":"4822b81b0e","server":"7480","farm":8,"dateuploaded":"1421591962","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"fafedaf4a8","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Seedlings"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1421591962","taken":"2015-01-18
953
+ 15:31:34","takengranularity":"0","takenunknown":"0","lastupdate":"1421592677"},"views":"181","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308144622\/"}]},"media":"photo"},"stat":"ok"}'
805
954
  http_version:
806
- recorded_at: Wed, 11 Mar 2015 17:13:12 GMT
955
+ recorded_at: Wed, 01 Apr 2015 08:53:13 GMT
807
956
  - request:
808
957
  method: post
809
958
  uri: https://api.flickr.com/services/rest/
810
959
  body:
811
960
  encoding: US-ASCII
812
- string: photo_id=16308619689&method=flickr.photos.getInfo&format=json&nojsoncallback=1
961
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
813
962
  headers:
814
963
  Accept-Encoding:
815
964
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -819,8 +968,8 @@ http_interactions:
819
968
  - FlickRaw/0.9.8
820
969
  Authorization:
821
970
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
822
- oauth_nonce="S5WemHpkY78VF0YSiTrD0SoCmgqV5jgsScVoclhc9j4%3D", oauth_signature="<FLICKR_SECRET>%26",
823
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093992", oauth_token="",
971
+ oauth_nonce="W8%2Fhf2xoOOPh23zOXHjyZF92%2FQ%2B8PnKV36ZfsQe65t0%3D", oauth_signature="<FLICKR_SECRET>%26",
972
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878393", oauth_token="",
824
973
  oauth_version="1.0"
825
974
  Content-Type:
826
975
  - application/x-www-form-urlencoded
@@ -830,11 +979,11 @@ http_interactions:
830
979
  message: OK
831
980
  headers:
832
981
  Date:
833
- - Wed, 11 Mar 2015 17:13:13 GMT
982
+ - Wed, 01 Apr 2015 08:53:11 GMT
834
983
  Content-Type:
835
984
  - application/json
836
985
  Content-Length:
837
- - '545'
986
+ - '371'
838
987
  P3p:
839
988
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
840
989
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -842,31 +991,41 @@ http_interactions:
842
991
  Cache-Control:
843
992
  - private
844
993
  X-Served-By:
845
- - www16.flickr.bf1.yahoo.com
994
+ - www347.flickr.bf1.yahoo.com
846
995
  Vary:
847
996
  - Accept-Encoding
848
997
  Age:
849
998
  - '0'
850
999
  Via:
851
- - http/1.1 fts122.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
852
- http/1.1 r21.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1000
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1001
+ http/1.1 r11.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
853
1002
  Server:
854
1003
  - ATS
1004
+ Strict-Transport-Security:
1005
+ - max-age=259200
855
1006
  Connection:
856
1007
  - keep-alive
857
1008
  body:
858
1009
  encoding: ASCII-8BIT
859
- string: '{"photo":{"id":"16308619689","secret":"41143c6dbb","server":"7327","farm":8,"dateuploaded":"1423599466","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dc11437dda","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Potato
860
- kit"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1423599466","taken":"2015-02-10
861
- 21:14:58","takengranularity":"0","takenunknown":"0","lastupdate":"1423601463"},"views":"75","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308619689\/"}]},"media":"photo"},"stat":"ok"}'
1010
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1011
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1012
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1013
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1014
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1015
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1016
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1017
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1018
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1019
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1020
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
862
1021
  http_version:
863
- recorded_at: Wed, 11 Mar 2015 17:13:13 GMT
1022
+ recorded_at: Wed, 01 Apr 2015 08:53:13 GMT
864
1023
  - request:
865
1024
  method: post
866
1025
  uri: https://api.flickr.com/services/rest/
867
1026
  body:
868
1027
  encoding: US-ASCII
869
- string: photo_id=16367228619&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1028
+ string: photo_id=16202827068&method=flickr.photos.getInfo&format=json&nojsoncallback=1
870
1029
  headers:
871
1030
  Accept-Encoding:
872
1031
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -876,8 +1035,8 @@ http_interactions:
876
1035
  - FlickRaw/0.9.8
877
1036
  Authorization:
878
1037
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
879
- oauth_nonce="afEZwrm86kuAok6r9eVeMkX9xqYgMifq7olLpGjFMjs%3D", oauth_signature="<FLICKR_SECRET>%26",
880
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093993", oauth_token="",
1038
+ oauth_nonce="UJ9PntvrZst%2FczllX%2BB3pfBU9svBGh8oJV0Cn1ePJvY%3D", oauth_signature="<FLICKR_SECRET>%26",
1039
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878393", oauth_token="",
881
1040
  oauth_version="1.0"
882
1041
  Content-Type:
883
1042
  - application/x-www-form-urlencoded
@@ -887,11 +1046,11 @@ http_interactions:
887
1046
  message: OK
888
1047
  headers:
889
1048
  Date:
890
- - Wed, 11 Mar 2015 17:13:13 GMT
1049
+ - Wed, 01 Apr 2015 08:53:11 GMT
891
1050
  Content-Type:
892
1051
  - application/json
893
1052
  Content-Length:
894
- - '550'
1053
+ - '542'
895
1054
  P3p:
896
1055
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
897
1056
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -899,31 +1058,33 @@ http_interactions:
899
1058
  Cache-Control:
900
1059
  - private
901
1060
  X-Served-By:
902
- - www25.flickr.bf1.yahoo.com
1061
+ - www60.flickr.bf1.yahoo.com
903
1062
  Vary:
904
1063
  - Accept-Encoding
905
1064
  Age:
906
1065
  - '0'
907
1066
  Via:
908
- - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
909
- http/1.1 r06.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1067
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1068
+ http/1.1 r14.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
910
1069
  Server:
911
1070
  - ATS
1071
+ Strict-Transport-Security:
1072
+ - max-age=259200
912
1073
  Connection:
913
1074
  - keep-alive
914
1075
  body:
915
1076
  encoding: ASCII-8BIT
916
- string: '{"photo":{"id":"16367228619","secret":"3af2aba147","server":"8660","farm":9,"dateuploaded":"1424124245","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"7145f68aed","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Embothrium
917
- seedling"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1424124245","taken":"2015-02-16
918
- 23:03:06","takengranularity":"0","takenunknown":"0","lastupdate":"1424125294"},"views":"55","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16367228619\/"}]},"media":"photo"},"stat":"ok"}'
1077
+ string: '{"photo":{"id":"16202827068","secret":"ee50e0cb1c","server":"7357","farm":8,"dateuploaded":"1422476532","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"06e6a96521","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Tomato
1078
+ farm"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476532","taken":"2015-01-28
1079
+ 21:19:32","takengranularity":"0","takenunknown":"0","lastupdate":"1422476584"},"views":"107","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16202827068\/"}]},"media":"photo"},"stat":"ok"}'
919
1080
  http_version:
920
- recorded_at: Wed, 11 Mar 2015 17:13:13 GMT
1081
+ recorded_at: Wed, 01 Apr 2015 08:53:13 GMT
921
1082
  - request:
922
1083
  method: post
923
1084
  uri: https://api.flickr.com/services/rest/
924
1085
  body:
925
1086
  encoding: US-ASCII
926
- string: photo_id=16752302412&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1087
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
927
1088
  headers:
928
1089
  Accept-Encoding:
929
1090
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -933,8 +1094,8 @@ http_interactions:
933
1094
  - FlickRaw/0.9.8
934
1095
  Authorization:
935
1096
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
936
- oauth_nonce="cEzgamRNYJ63vox92aRCKuNmzSeez2xypZOdnMOfgUU%3D", oauth_signature="<FLICKR_SECRET>%26",
937
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093993", oauth_token="",
1097
+ oauth_nonce="zCCZ7emB6p7kbUOuCRsRtWs4El7b9wWIqL4WgBUZero%3D", oauth_signature="<FLICKR_SECRET>%26",
1098
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878393", oauth_token="",
938
1099
  oauth_version="1.0"
939
1100
  Content-Type:
940
1101
  - application/x-www-form-urlencoded
@@ -944,11 +1105,11 @@ http_interactions:
944
1105
  message: OK
945
1106
  headers:
946
1107
  Date:
947
- - Wed, 11 Mar 2015 17:13:13 GMT
1108
+ - Wed, 01 Apr 2015 08:53:12 GMT
948
1109
  Content-Type:
949
1110
  - application/json
950
1111
  Content-Length:
951
- - '545'
1112
+ - '371'
952
1113
  P3p:
953
1114
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
954
1115
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -956,30 +1117,41 @@ http_interactions:
956
1117
  Cache-Control:
957
1118
  - private
958
1119
  X-Served-By:
959
- - www45.flickr.bf1.yahoo.com
1120
+ - www326.flickr.bf1.yahoo.com
960
1121
  Vary:
961
1122
  - Accept-Encoding
962
1123
  Age:
963
1124
  - '0'
964
1125
  Via:
965
- - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
966
- http/1.1 r10.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1126
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1127
+ http/1.1 r19.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
967
1128
  Server:
968
1129
  - ATS
1130
+ Strict-Transport-Security:
1131
+ - max-age=259200
969
1132
  Connection:
970
1133
  - keep-alive
971
1134
  body:
972
1135
  encoding: ASCII-8BIT
973
- string: '{"photo":{"id":"16752302412","secret":"d80b27c8dc","server":"8707","farm":9,"dateuploaded":"1425824636","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"b2e8dd6c5c","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Growhouse"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824636","taken":"2015-03-08
974
- 15:19:53","takengranularity":"0","takenunknown":"0","lastupdate":"1425825014"},"views":"33","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752302412\/"}]},"media":"photo"},"stat":"ok"}'
1136
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1137
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1138
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1139
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1140
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1141
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1142
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1143
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1144
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1145
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1146
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
975
1147
  http_version:
976
- recorded_at: Wed, 11 Mar 2015 17:13:13 GMT
1148
+ recorded_at: Wed, 01 Apr 2015 08:53:14 GMT
977
1149
  - request:
978
1150
  method: post
979
1151
  uri: https://api.flickr.com/services/rest/
980
1152
  body:
981
1153
  encoding: US-ASCII
982
- string: photo_id=16752239531&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1154
+ string: photo_id=16388723891&method=flickr.photos.getInfo&format=json&nojsoncallback=1
983
1155
  headers:
984
1156
  Accept-Encoding:
985
1157
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
@@ -989,8 +1161,8 @@ http_interactions:
989
1161
  - FlickRaw/0.9.8
990
1162
  Authorization:
991
1163
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
992
- oauth_nonce="t8jRHtYi2lf%2BnvU3AHg0HIMCUyvd60Ti13ViJoNBho0%3D", oauth_signature="<FLICKR_SECRET>%26",
993
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426093993", oauth_token="",
1164
+ oauth_nonce="RFs98r%2Fk1U3GYzGaB7FfdyvzcZyQx%2BXBlBzR0BcEihw%3D", oauth_signature="<FLICKR_SECRET>%26",
1165
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878394", oauth_token="",
994
1166
  oauth_version="1.0"
995
1167
  Content-Type:
996
1168
  - application/x-www-form-urlencoded
@@ -1000,11 +1172,11 @@ http_interactions:
1000
1172
  message: OK
1001
1173
  headers:
1002
1174
  Date:
1003
- - Wed, 11 Mar 2015 17:13:14 GMT
1175
+ - Wed, 01 Apr 2015 08:53:12 GMT
1004
1176
  Content-Type:
1005
1177
  - application/json
1006
1178
  Content-Length:
1007
- - '602'
1179
+ - '541'
1008
1180
  P3p:
1009
1181
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1010
1182
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -1012,24 +1184,1097 @@ http_interactions:
1012
1184
  Cache-Control:
1013
1185
  - private
1014
1186
  X-Served-By:
1015
- - www7.flickr.bf1.yahoo.com
1187
+ - www284.flickr.bf1.yahoo.com
1016
1188
  Vary:
1017
1189
  - Accept-Encoding
1018
1190
  Age:
1019
1191
  - '0'
1020
1192
  Via:
1021
- - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1022
- http/1.1 r07.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1193
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1194
+ http/1.1 r21.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1023
1195
  Server:
1024
1196
  - ATS
1197
+ Strict-Transport-Security:
1198
+ - max-age=259200
1025
1199
  Connection:
1026
1200
  - keep-alive
1027
1201
  body:
1028
1202
  encoding: ASCII-8BIT
1029
- string: '{"photo":{"id":"16752239531","secret":"2bcaa35495","server":"7651","farm":8,"dateuploaded":"1425824917","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"6f79696344","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
1030
- pots"},"description":{"_content":"Chives, tarragon, sage, thyme, rosemary,
1031
- spinachy things, chocolate mint, potato bags\n"},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824917","taken":"2015-03-08
1032
- 15:20:22","takengranularity":"0","takenunknown":"0","lastupdate":"1425825005"},"views":"32","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752239531\/"}]},"media":"photo"},"stat":"ok"}'
1203
+ string: '{"photo":{"id":"16388723891","secret":"10a4a8e745","server":"7382","farm":8,"dateuploaded":"1422476602","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"203886b5a3","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Cucamelon"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476602","taken":"2015-01-28
1204
+ 21:19:45","takengranularity":"0","takenunknown":"0","lastupdate":"1422477672"},"views":"142","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16388723891\/"}]},"media":"photo"},"stat":"ok"}'
1205
+ http_version:
1206
+ recorded_at: Wed, 01 Apr 2015 08:53:14 GMT
1207
+ - request:
1208
+ method: post
1209
+ uri: https://api.flickr.com/services/rest/
1210
+ body:
1211
+ encoding: US-ASCII
1212
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1213
+ headers:
1214
+ Accept-Encoding:
1215
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1216
+ Accept:
1217
+ - "*/*"
1218
+ User-Agent:
1219
+ - FlickRaw/0.9.8
1220
+ Authorization:
1221
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1222
+ oauth_nonce="V7%2FV%2Fs%2FwZF%2Bwnfrrn7ZpdmOAaAkDmLJz5HwtJhojfAw%3D", oauth_signature="<FLICKR_SECRET>%26",
1223
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878394", oauth_token="",
1224
+ oauth_version="1.0"
1225
+ Content-Type:
1226
+ - application/x-www-form-urlencoded
1227
+ response:
1228
+ status:
1229
+ code: 200
1230
+ message: OK
1231
+ headers:
1232
+ Date:
1233
+ - Wed, 01 Apr 2015 08:53:12 GMT
1234
+ Content-Type:
1235
+ - application/json
1236
+ Content-Length:
1237
+ - '371'
1238
+ P3p:
1239
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1240
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1241
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1242
+ Cache-Control:
1243
+ - private
1244
+ X-Served-By:
1245
+ - www17.flickr.bf1.yahoo.com
1246
+ Vary:
1247
+ - Accept-Encoding
1248
+ Age:
1249
+ - '0'
1250
+ Via:
1251
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1252
+ http/1.1 r05.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1253
+ Server:
1254
+ - ATS
1255
+ Strict-Transport-Security:
1256
+ - max-age=259200
1257
+ Connection:
1258
+ - keep-alive
1259
+ body:
1260
+ encoding: ASCII-8BIT
1261
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1262
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1263
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1264
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1265
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1266
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1267
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1268
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1269
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1270
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1271
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
1272
+ http_version:
1273
+ recorded_at: Wed, 01 Apr 2015 08:53:14 GMT
1274
+ - request:
1275
+ method: post
1276
+ uri: https://api.flickr.com/services/rest/
1277
+ body:
1278
+ encoding: US-ASCII
1279
+ string: photo_id=16308619689&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1280
+ headers:
1281
+ Accept-Encoding:
1282
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1283
+ Accept:
1284
+ - "*/*"
1285
+ User-Agent:
1286
+ - FlickRaw/0.9.8
1287
+ Authorization:
1288
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1289
+ oauth_nonce="IMsm12hEEdmidRlBoUgTrsPRdYnggOZVCqreaic2gyA%3D", oauth_signature="<FLICKR_SECRET>%26",
1290
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878394", oauth_token="",
1291
+ oauth_version="1.0"
1292
+ Content-Type:
1293
+ - application/x-www-form-urlencoded
1294
+ response:
1295
+ status:
1296
+ code: 200
1297
+ message: OK
1298
+ headers:
1299
+ Date:
1300
+ - Wed, 01 Apr 2015 08:53:13 GMT
1301
+ Content-Type:
1302
+ - application/json
1303
+ Content-Length:
1304
+ - '546'
1305
+ P3p:
1306
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1307
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1308
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1309
+ Cache-Control:
1310
+ - private
1311
+ X-Served-By:
1312
+ - www289.flickr.bf1.yahoo.com
1313
+ Vary:
1314
+ - Accept-Encoding
1315
+ Age:
1316
+ - '0'
1317
+ Via:
1318
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1319
+ http/1.1 r12.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1320
+ Server:
1321
+ - ATS
1322
+ Strict-Transport-Security:
1323
+ - max-age=259200
1324
+ Connection:
1325
+ - keep-alive
1326
+ body:
1327
+ encoding: ASCII-8BIT
1328
+ string: '{"photo":{"id":"16308619689","secret":"41143c6dbb","server":"7327","farm":8,"dateuploaded":"1423599466","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dc11437dda","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Potato
1329
+ kit"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1423599466","taken":"2015-02-10
1330
+ 21:14:58","takengranularity":"0","takenunknown":"0","lastupdate":"1423601463"},"views":"101","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308619689\/"}]},"media":"photo"},"stat":"ok"}'
1331
+ http_version:
1332
+ recorded_at: Wed, 01 Apr 2015 08:53:15 GMT
1333
+ - request:
1334
+ method: post
1335
+ uri: https://api.flickr.com/services/rest/
1336
+ body:
1337
+ encoding: US-ASCII
1338
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1339
+ headers:
1340
+ Accept-Encoding:
1341
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1342
+ Accept:
1343
+ - "*/*"
1344
+ User-Agent:
1345
+ - FlickRaw/0.9.8
1346
+ Authorization:
1347
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1348
+ oauth_nonce="VZZXaY08Pr3zzbbj%2BVzHNzTtjZC5CutaFOkfTPtZW14%3D", oauth_signature="<FLICKR_SECRET>%26",
1349
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878395", oauth_token="",
1350
+ oauth_version="1.0"
1351
+ Content-Type:
1352
+ - application/x-www-form-urlencoded
1353
+ response:
1354
+ status:
1355
+ code: 200
1356
+ message: OK
1357
+ headers:
1358
+ Date:
1359
+ - Wed, 01 Apr 2015 08:53:13 GMT
1360
+ Content-Type:
1361
+ - application/json
1362
+ Content-Length:
1363
+ - '371'
1364
+ P3p:
1365
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1366
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1367
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1368
+ Cache-Control:
1369
+ - private
1370
+ X-Served-By:
1371
+ - www242.flickr.bf1.yahoo.com
1372
+ Vary:
1373
+ - Accept-Encoding
1374
+ Age:
1375
+ - '0'
1376
+ Via:
1377
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1378
+ http/1.1 r17.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1379
+ Server:
1380
+ - ATS
1381
+ Strict-Transport-Security:
1382
+ - max-age=259200
1383
+ Connection:
1384
+ - keep-alive
1385
+ body:
1386
+ encoding: ASCII-8BIT
1387
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1388
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1389
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1390
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1391
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1392
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1393
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1394
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1395
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1396
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1397
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
1398
+ http_version:
1399
+ recorded_at: Wed, 01 Apr 2015 08:53:15 GMT
1400
+ - request:
1401
+ method: post
1402
+ uri: https://api.flickr.com/services/rest/
1403
+ body:
1404
+ encoding: US-ASCII
1405
+ string: photo_id=16367228619&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1406
+ headers:
1407
+ Accept-Encoding:
1408
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1409
+ Accept:
1410
+ - "*/*"
1411
+ User-Agent:
1412
+ - FlickRaw/0.9.8
1413
+ Authorization:
1414
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1415
+ oauth_nonce="ryZ54Sp%2BB9iKKtfzM1DoHTpJG2jhg59fRoqkGkT5zJM%3D", oauth_signature="<FLICKR_SECRET>%26",
1416
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878395", oauth_token="",
1417
+ oauth_version="1.0"
1418
+ Content-Type:
1419
+ - application/x-www-form-urlencoded
1420
+ response:
1421
+ status:
1422
+ code: 200
1423
+ message: OK
1424
+ headers:
1425
+ Date:
1426
+ - Wed, 01 Apr 2015 08:53:13 GMT
1427
+ Content-Type:
1428
+ - application/json
1429
+ Content-Length:
1430
+ - '551'
1431
+ P3p:
1432
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1433
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1434
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1435
+ Cache-Control:
1436
+ - private
1437
+ X-Served-By:
1438
+ - www231.flickr.bf1.yahoo.com
1439
+ Vary:
1440
+ - Accept-Encoding
1441
+ Age:
1442
+ - '0'
1443
+ Via:
1444
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1445
+ http/1.1 r07.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1446
+ Server:
1447
+ - ATS
1448
+ Strict-Transport-Security:
1449
+ - max-age=259200
1450
+ Connection:
1451
+ - keep-alive
1452
+ body:
1453
+ encoding: ASCII-8BIT
1454
+ string: '{"photo":{"id":"16367228619","secret":"3af2aba147","server":"8660","farm":9,"dateuploaded":"1424124245","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"7145f68aed","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Embothrium
1455
+ seedling"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1424124245","taken":"2015-02-16
1456
+ 23:03:06","takengranularity":"0","takenunknown":"0","lastupdate":"1424125294"},"views":"82","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16367228619\/"}]},"media":"photo"},"stat":"ok"}'
1457
+ http_version:
1458
+ recorded_at: Wed, 01 Apr 2015 08:53:15 GMT
1459
+ - request:
1460
+ method: post
1461
+ uri: https://api.flickr.com/services/rest/
1462
+ body:
1463
+ encoding: US-ASCII
1464
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1465
+ headers:
1466
+ Accept-Encoding:
1467
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1468
+ Accept:
1469
+ - "*/*"
1470
+ User-Agent:
1471
+ - FlickRaw/0.9.8
1472
+ Authorization:
1473
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1474
+ oauth_nonce="Ote1r1rqvccD1RUm%2FIeThmazmeTreTh6ic1RUSghEE0%3D", oauth_signature="<FLICKR_SECRET>%26",
1475
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878395", oauth_token="",
1476
+ oauth_version="1.0"
1477
+ Content-Type:
1478
+ - application/x-www-form-urlencoded
1479
+ response:
1480
+ status:
1481
+ code: 200
1482
+ message: OK
1483
+ headers:
1484
+ Date:
1485
+ - Wed, 01 Apr 2015 08:53:14 GMT
1486
+ Content-Type:
1487
+ - application/json
1488
+ Content-Length:
1489
+ - '371'
1490
+ P3p:
1491
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1492
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1493
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1494
+ Cache-Control:
1495
+ - private
1496
+ X-Served-By:
1497
+ - www42.flickr.bf1.yahoo.com
1498
+ Vary:
1499
+ - Accept-Encoding
1500
+ Age:
1501
+ - '0'
1502
+ Via:
1503
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1504
+ http/1.1 r06.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1505
+ Server:
1506
+ - ATS
1507
+ Strict-Transport-Security:
1508
+ - max-age=259200
1509
+ Connection:
1510
+ - keep-alive
1511
+ body:
1512
+ encoding: ASCII-8BIT
1513
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1514
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1515
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1516
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1517
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1518
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1519
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1520
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1521
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1522
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1523
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
1524
+ http_version:
1525
+ recorded_at: Wed, 01 Apr 2015 08:53:16 GMT
1526
+ - request:
1527
+ method: post
1528
+ uri: https://api.flickr.com/services/rest/
1529
+ body:
1530
+ encoding: US-ASCII
1531
+ string: photo_id=16752302412&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1532
+ headers:
1533
+ Accept-Encoding:
1534
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1535
+ Accept:
1536
+ - "*/*"
1537
+ User-Agent:
1538
+ - FlickRaw/0.9.8
1539
+ Authorization:
1540
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1541
+ oauth_nonce="YSH7hF%2FkYVBAgrULZCdf4fFwpgixTxj3hpMr3Qw%2BE8w%3D", oauth_signature="<FLICKR_SECRET>%26",
1542
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878396", oauth_token="",
1543
+ oauth_version="1.0"
1544
+ Content-Type:
1545
+ - application/x-www-form-urlencoded
1546
+ response:
1547
+ status:
1548
+ code: 200
1549
+ message: OK
1550
+ headers:
1551
+ Date:
1552
+ - Wed, 01 Apr 2015 08:53:14 GMT
1553
+ Content-Type:
1554
+ - application/json
1555
+ Content-Length:
1556
+ - '545'
1557
+ P3p:
1558
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1559
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1560
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1561
+ Cache-Control:
1562
+ - private
1563
+ X-Served-By:
1564
+ - www244.flickr.bf1.yahoo.com
1565
+ Vary:
1566
+ - Accept-Encoding
1567
+ Age:
1568
+ - '0'
1569
+ Via:
1570
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1571
+ http/1.1 r03.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1572
+ Server:
1573
+ - ATS
1574
+ Strict-Transport-Security:
1575
+ - max-age=259200
1576
+ Connection:
1577
+ - keep-alive
1578
+ body:
1579
+ encoding: ASCII-8BIT
1580
+ string: '{"photo":{"id":"16752302412","secret":"d80b27c8dc","server":"8707","farm":9,"dateuploaded":"1425824636","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"b2e8dd6c5c","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Growhouse"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824636","taken":"2015-03-08
1581
+ 15:19:53","takengranularity":"0","takenunknown":"0","lastupdate":"1425825014"},"views":"62","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752302412\/"}]},"media":"photo"},"stat":"ok"}'
1582
+ http_version:
1583
+ recorded_at: Wed, 01 Apr 2015 08:53:16 GMT
1584
+ - request:
1585
+ method: post
1586
+ uri: https://api.flickr.com/services/rest/
1587
+ body:
1588
+ encoding: US-ASCII
1589
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1590
+ headers:
1591
+ Accept-Encoding:
1592
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1593
+ Accept:
1594
+ - "*/*"
1595
+ User-Agent:
1596
+ - FlickRaw/0.9.8
1597
+ Authorization:
1598
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1599
+ oauth_nonce="kfk4ueuIySVivLuT4hOZ1uguLyr7UeOQhYS0HItHCx4%3D", oauth_signature="<FLICKR_SECRET>%26",
1600
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878396", oauth_token="",
1601
+ oauth_version="1.0"
1602
+ Content-Type:
1603
+ - application/x-www-form-urlencoded
1604
+ response:
1605
+ status:
1606
+ code: 200
1607
+ message: OK
1608
+ headers:
1609
+ Date:
1610
+ - Wed, 01 Apr 2015 08:53:14 GMT
1611
+ Content-Type:
1612
+ - application/json
1613
+ Content-Length:
1614
+ - '371'
1615
+ P3p:
1616
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1617
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1618
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1619
+ Cache-Control:
1620
+ - private
1621
+ X-Served-By:
1622
+ - www331.flickr.bf1.yahoo.com
1623
+ Vary:
1624
+ - Accept-Encoding
1625
+ Age:
1626
+ - '0'
1627
+ Via:
1628
+ - http/1.1 fts110.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1629
+ http/1.1 r17.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1630
+ Server:
1631
+ - ATS
1632
+ Strict-Transport-Security:
1633
+ - max-age=259200
1634
+ Connection:
1635
+ - keep-alive
1636
+ body:
1637
+ encoding: ASCII-8BIT
1638
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1639
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1640
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1641
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1642
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1643
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1644
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1645
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1646
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1647
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1648
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
1649
+ http_version:
1650
+ recorded_at: Wed, 01 Apr 2015 08:53:16 GMT
1651
+ - request:
1652
+ method: post
1653
+ uri: https://api.flickr.com/services/rest/
1654
+ body:
1655
+ encoding: US-ASCII
1656
+ string: photo_id=16752239531&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1657
+ headers:
1658
+ Accept-Encoding:
1659
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1660
+ Accept:
1661
+ - "*/*"
1662
+ User-Agent:
1663
+ - FlickRaw/0.9.8
1664
+ Authorization:
1665
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1666
+ oauth_nonce="luO0XxmDxM%2FaTv5GL2j7H7UqfgNnEho8joMot19CHJs%3D", oauth_signature="<FLICKR_SECRET>%26",
1667
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878396", oauth_token="",
1668
+ oauth_version="1.0"
1669
+ Content-Type:
1670
+ - application/x-www-form-urlencoded
1671
+ response:
1672
+ status:
1673
+ code: 200
1674
+ message: OK
1675
+ headers:
1676
+ Date:
1677
+ - Wed, 01 Apr 2015 08:53:15 GMT
1678
+ Content-Type:
1679
+ - application/json
1680
+ Content-Length:
1681
+ - '602'
1682
+ P3p:
1683
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1684
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1685
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1686
+ Cache-Control:
1687
+ - private
1688
+ X-Served-By:
1689
+ - www270.flickr.bf1.yahoo.com
1690
+ Vary:
1691
+ - Accept-Encoding
1692
+ Age:
1693
+ - '1'
1694
+ Via:
1695
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1696
+ http/1.1 r10.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1697
+ Server:
1698
+ - ATS
1699
+ Strict-Transport-Security:
1700
+ - max-age=259200
1701
+ Connection:
1702
+ - keep-alive
1703
+ body:
1704
+ encoding: ASCII-8BIT
1705
+ string: '{"photo":{"id":"16752239531","secret":"2bcaa35495","server":"7651","farm":8,"dateuploaded":"1425824917","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"6f79696344","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
1706
+ pots"},"description":{"_content":"Chives, tarragon, sage, thyme, rosemary,
1707
+ spinachy things, chocolate mint, potato bags\n"},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824917","taken":"2015-03-08
1708
+ 15:20:22","takengranularity":"0","takenunknown":"0","lastupdate":"1425825005"},"views":"67","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752239531\/"}]},"media":"photo"},"stat":"ok"}'
1709
+ http_version:
1710
+ recorded_at: Wed, 01 Apr 2015 08:53:17 GMT
1711
+ - request:
1712
+ method: post
1713
+ uri: https://api.flickr.com/services/rest/
1714
+ body:
1715
+ encoding: US-ASCII
1716
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1717
+ headers:
1718
+ Accept-Encoding:
1719
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1720
+ Accept:
1721
+ - "*/*"
1722
+ User-Agent:
1723
+ - FlickRaw/0.9.8
1724
+ Authorization:
1725
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1726
+ oauth_nonce="byR6QtRRyuSQHO%2FeV3bPXCPnUgpiN%2FSK0sIBhIE5ML8%3D", oauth_signature="<FLICKR_SECRET>%26",
1727
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878397", oauth_token="",
1728
+ oauth_version="1.0"
1729
+ Content-Type:
1730
+ - application/x-www-form-urlencoded
1731
+ response:
1732
+ status:
1733
+ code: 200
1734
+ message: OK
1735
+ headers:
1736
+ Date:
1737
+ - Wed, 01 Apr 2015 08:53:15 GMT
1738
+ Content-Type:
1739
+ - application/json
1740
+ Content-Length:
1741
+ - '371'
1742
+ P3p:
1743
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1744
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1745
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1746
+ Cache-Control:
1747
+ - private
1748
+ X-Served-By:
1749
+ - www330.flickr.bf1.yahoo.com
1750
+ Vary:
1751
+ - Accept-Encoding
1752
+ Age:
1753
+ - '0'
1754
+ Via:
1755
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1756
+ http/1.1 r02.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1757
+ Server:
1758
+ - ATS
1759
+ Strict-Transport-Security:
1760
+ - max-age=259200
1761
+ Connection:
1762
+ - keep-alive
1763
+ body:
1764
+ encoding: ASCII-8BIT
1765
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1766
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1767
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1768
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1769
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1770
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1771
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1772
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1773
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1774
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1775
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
1776
+ http_version:
1777
+ recorded_at: Wed, 01 Apr 2015 08:53:17 GMT
1778
+ - request:
1779
+ method: post
1780
+ uri: https://api.flickr.com/services/rest/
1781
+ body:
1782
+ encoding: US-ASCII
1783
+ string: photo_id=16781381829&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1784
+ headers:
1785
+ Accept-Encoding:
1786
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1787
+ Accept:
1788
+ - "*/*"
1789
+ User-Agent:
1790
+ - FlickRaw/0.9.8
1791
+ Authorization:
1792
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1793
+ oauth_nonce="jkPFEp0Qs5HBEzUAh44koM6BEdQcL6%2FW3QgP%2F%2BDmEaQ%3D", oauth_signature="<FLICKR_SECRET>%26",
1794
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878397", oauth_token="",
1795
+ oauth_version="1.0"
1796
+ Content-Type:
1797
+ - application/x-www-form-urlencoded
1798
+ response:
1799
+ status:
1800
+ code: 200
1801
+ message: OK
1802
+ headers:
1803
+ Date:
1804
+ - Wed, 01 Apr 2015 08:53:15 GMT
1805
+ Content-Type:
1806
+ - application/json
1807
+ Content-Length:
1808
+ - '545'
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
+ - www224.flickr.bf1.yahoo.com
1817
+ Vary:
1818
+ - Accept-Encoding
1819
+ Age:
1820
+ - '0'
1821
+ Via:
1822
+ - http/1.1 fts124.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1823
+ http/1.1 r06.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1824
+ Server:
1825
+ - ATS
1826
+ Strict-Transport-Security:
1827
+ - max-age=259200
1828
+ Connection:
1829
+ - keep-alive
1830
+ body:
1831
+ encoding: ASCII-8BIT
1832
+ string: '{"photo":{"id":"16781381829","secret":"5350c41a12","server":"8717","farm":9,"dateuploaded":"1427644206","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"2ba6bcdc36","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
1833
+ pots"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427644206","taken":"2015-03-29
1834
+ 16:46:33","takengranularity":"0","takenunknown":"0","lastupdate":"1427644512"},"views":"34","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16781381829\/"}]},"media":"photo"},"stat":"ok"}'
1835
+ http_version:
1836
+ recorded_at: Wed, 01 Apr 2015 08:53:17 GMT
1837
+ - request:
1838
+ method: post
1839
+ uri: https://api.flickr.com/services/rest/
1840
+ body:
1841
+ encoding: US-ASCII
1842
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1843
+ headers:
1844
+ Accept-Encoding:
1845
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1846
+ Accept:
1847
+ - "*/*"
1848
+ User-Agent:
1849
+ - FlickRaw/0.9.8
1850
+ Authorization:
1851
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1852
+ oauth_nonce="uF8ntatVg3zxyw2%2BIg5AjgO%2F7GWtXoKeEu471QSfTSo%3D", oauth_signature="<FLICKR_SECRET>%26",
1853
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878397", oauth_token="",
1854
+ oauth_version="1.0"
1855
+ Content-Type:
1856
+ - application/x-www-form-urlencoded
1857
+ response:
1858
+ status:
1859
+ code: 200
1860
+ message: OK
1861
+ headers:
1862
+ Date:
1863
+ - Wed, 01 Apr 2015 08:53:16 GMT
1864
+ Content-Type:
1865
+ - application/json
1866
+ Content-Length:
1867
+ - '371'
1868
+ P3p:
1869
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1870
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1871
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1872
+ Cache-Control:
1873
+ - private
1874
+ X-Served-By:
1875
+ - www43.flickr.bf1.yahoo.com
1876
+ Vary:
1877
+ - Accept-Encoding
1878
+ Age:
1879
+ - '1'
1880
+ Via:
1881
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1882
+ http/1.1 r02.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1883
+ Server:
1884
+ - ATS
1885
+ Strict-Transport-Security:
1886
+ - max-age=259200
1887
+ Connection:
1888
+ - keep-alive
1889
+ body:
1890
+ encoding: ASCII-8BIT
1891
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
1892
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
1893
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
1894
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
1895
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
1896
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
1897
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
1898
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
1899
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
1900
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
1901
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
1902
+ http_version:
1903
+ recorded_at: Wed, 01 Apr 2015 08:53:18 GMT
1904
+ - request:
1905
+ method: post
1906
+ uri: https://api.flickr.com/services/rest/
1907
+ body:
1908
+ encoding: US-ASCII
1909
+ string: photo_id=16794930739&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1910
+ headers:
1911
+ Accept-Encoding:
1912
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1913
+ Accept:
1914
+ - "*/*"
1915
+ User-Agent:
1916
+ - FlickRaw/0.9.8
1917
+ Authorization:
1918
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1919
+ oauth_nonce="HidvgApWfb5%2BKAX6PKxeQF%2BT0YGbxgf8qkOoeW9f8Dc%3D", oauth_signature="<FLICKR_SECRET>%26",
1920
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878398", oauth_token="",
1921
+ oauth_version="1.0"
1922
+ Content-Type:
1923
+ - application/x-www-form-urlencoded
1924
+ response:
1925
+ status:
1926
+ code: 200
1927
+ message: OK
1928
+ headers:
1929
+ Date:
1930
+ - Wed, 01 Apr 2015 08:53:16 GMT
1931
+ Content-Type:
1932
+ - application/json
1933
+ Content-Length:
1934
+ - '544'
1935
+ P3p:
1936
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1937
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1938
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1939
+ Cache-Control:
1940
+ - private
1941
+ X-Served-By:
1942
+ - www262.flickr.bf1.yahoo.com
1943
+ Vary:
1944
+ - Accept-Encoding
1945
+ Age:
1946
+ - '0'
1947
+ Via:
1948
+ - http/1.1 fts110.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1949
+ http/1.1 r17.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
1950
+ Server:
1951
+ - ATS
1952
+ Strict-Transport-Security:
1953
+ - max-age=259200
1954
+ Connection:
1955
+ - keep-alive
1956
+ body:
1957
+ encoding: ASCII-8BIT
1958
+ string: '{"photo":{"id":"16794930739","secret":"437b5cf887","server":"8733","farm":9,"dateuploaded":"1427740028","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"10281acd66","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
1959
+ pots"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427740028","taken":"2015-03-29
1960
+ 16:46:48","takengranularity":"0","takenunknown":"0","lastupdate":"1427740128"},"views":"29","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16794930739\/"}]},"media":"photo"},"stat":"ok"}'
1961
+ http_version:
1962
+ recorded_at: Wed, 01 Apr 2015 08:53:19 GMT
1963
+ - request:
1964
+ method: post
1965
+ uri: https://api.flickr.com/services/rest/
1966
+ body:
1967
+ encoding: US-ASCII
1968
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1969
+ headers:
1970
+ Accept-Encoding:
1971
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1972
+ Accept:
1973
+ - "*/*"
1974
+ User-Agent:
1975
+ - FlickRaw/0.9.8
1976
+ Authorization:
1977
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1978
+ oauth_nonce="KnKazvw4ERUm7Q3mYUQKdEboTM5zL8D4mbPBCMULAb8%3D", oauth_signature="<FLICKR_SECRET>%26",
1979
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878399", oauth_token="",
1980
+ oauth_version="1.0"
1981
+ Content-Type:
1982
+ - application/x-www-form-urlencoded
1983
+ response:
1984
+ status:
1985
+ code: 200
1986
+ message: OK
1987
+ headers:
1988
+ Date:
1989
+ - Wed, 01 Apr 2015 08:53:17 GMT
1990
+ Content-Type:
1991
+ - application/json
1992
+ Content-Length:
1993
+ - '371'
1994
+ P3p:
1995
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1996
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1997
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1998
+ Cache-Control:
1999
+ - private
2000
+ X-Served-By:
2001
+ - www13.flickr.bf1.yahoo.com
2002
+ Vary:
2003
+ - Accept-Encoding
2004
+ Age:
2005
+ - '0'
2006
+ Via:
2007
+ - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2008
+ http/1.1 r12.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
2009
+ Server:
2010
+ - ATS
2011
+ Strict-Transport-Security:
2012
+ - max-age=259200
2013
+ Connection:
2014
+ - keep-alive
2015
+ body:
2016
+ encoding: ASCII-8BIT
2017
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
2018
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
2019
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
2020
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
2021
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
2022
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
2023
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
2024
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
2025
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
2026
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
2027
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
2028
+ http_version:
2029
+ recorded_at: Wed, 01 Apr 2015 08:53:19 GMT
2030
+ - request:
2031
+ method: post
2032
+ uri: https://api.flickr.com/services/rest/
2033
+ body:
2034
+ encoding: US-ASCII
2035
+ string: photo_id=16979820102&method=flickr.photos.getInfo&format=json&nojsoncallback=1
2036
+ headers:
2037
+ Accept-Encoding:
2038
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2039
+ Accept:
2040
+ - "*/*"
2041
+ User-Agent:
2042
+ - FlickRaw/0.9.8
2043
+ Authorization:
2044
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
2045
+ oauth_nonce="O3ruFoHKpxrRuwYgwRdO4qkMyihpWtaGmiZ1yOU5U8U%3D", oauth_signature="<FLICKR_SECRET>%26",
2046
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878399", oauth_token="",
2047
+ oauth_version="1.0"
2048
+ Content-Type:
2049
+ - application/x-www-form-urlencoded
2050
+ response:
2051
+ status:
2052
+ code: 200
2053
+ message: OK
2054
+ headers:
2055
+ Date:
2056
+ - Wed, 01 Apr 2015 08:53:17 GMT
2057
+ Content-Type:
2058
+ - application/json
2059
+ Content-Length:
2060
+ - '539'
2061
+ P3p:
2062
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2063
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2064
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2065
+ Cache-Control:
2066
+ - private
2067
+ X-Served-By:
2068
+ - www29.flickr.bf1.yahoo.com
2069
+ Vary:
2070
+ - Accept-Encoding
2071
+ Age:
2072
+ - '0'
2073
+ Via:
2074
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2075
+ http/1.1 r22.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
2076
+ Server:
2077
+ - ATS
2078
+ Strict-Transport-Security:
2079
+ - max-age=259200
2080
+ Connection:
2081
+ - keep-alive
2082
+ body:
2083
+ encoding: ASCII-8BIT
2084
+ string: '{"photo":{"id":"16979820102","secret":"e4dca71af6","server":"8705","farm":9,"dateuploaded":"1427740229","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"a913b471b0","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427740229","taken":"2015-03-29
2085
+ 16:47:01","takengranularity":"0","takenunknown":"0","lastupdate":"1427740271"},"views":"32","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16979820102\/"}]},"media":"photo"},"stat":"ok"}'
2086
+ http_version:
2087
+ recorded_at: Wed, 01 Apr 2015 08:53:19 GMT
2088
+ - request:
2089
+ method: post
2090
+ uri: https://api.flickr.com/services/rest/
2091
+ body:
2092
+ encoding: US-ASCII
2093
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
2094
+ headers:
2095
+ Accept-Encoding:
2096
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2097
+ Accept:
2098
+ - "*/*"
2099
+ User-Agent:
2100
+ - FlickRaw/0.9.8
2101
+ Authorization:
2102
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
2103
+ oauth_nonce="2l5fJYF3ug7GLAcYtTxCVNUeEx8qeRkW70kq5%2FFy9tg%3D", oauth_signature="<FLICKR_SECRET>%26",
2104
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878399", oauth_token="",
2105
+ oauth_version="1.0"
2106
+ Content-Type:
2107
+ - application/x-www-form-urlencoded
2108
+ response:
2109
+ status:
2110
+ code: 200
2111
+ message: OK
2112
+ headers:
2113
+ Date:
2114
+ - Wed, 01 Apr 2015 08:53:17 GMT
2115
+ Content-Type:
2116
+ - application/json
2117
+ Content-Length:
2118
+ - '371'
2119
+ P3p:
2120
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2121
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2122
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2123
+ Cache-Control:
2124
+ - private
2125
+ X-Served-By:
2126
+ - www33.flickr.bf1.yahoo.com
2127
+ Vary:
2128
+ - Accept-Encoding
2129
+ Age:
2130
+ - '0'
2131
+ Via:
2132
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2133
+ http/1.1 r16.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
2134
+ Server:
2135
+ - ATS
2136
+ Strict-Transport-Security:
2137
+ - max-age=259200
2138
+ Connection:
2139
+ - keep-alive
2140
+ body:
2141
+ encoding: ASCII-8BIT
2142
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
2143
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
2144
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
2145
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
2146
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
2147
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
2148
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
2149
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
2150
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
2151
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
2152
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
2153
+ http_version:
2154
+ recorded_at: Wed, 01 Apr 2015 08:53:19 GMT
2155
+ - request:
2156
+ method: post
2157
+ uri: https://api.flickr.com/services/rest/
2158
+ body:
2159
+ encoding: US-ASCII
2160
+ string: photo_id=16773754717&method=flickr.photos.getInfo&format=json&nojsoncallback=1
2161
+ headers:
2162
+ Accept-Encoding:
2163
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2164
+ Accept:
2165
+ - "*/*"
2166
+ User-Agent:
2167
+ - FlickRaw/0.9.8
2168
+ Authorization:
2169
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
2170
+ oauth_nonce="rg8ycMsaQeCB5OpN9g2T8vadLvWVb5jzEGo51k7rVc0%3D", oauth_signature="<FLICKR_SECRET>%26",
2171
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878399", oauth_token="",
2172
+ oauth_version="1.0"
2173
+ Content-Type:
2174
+ - application/x-www-form-urlencoded
2175
+ response:
2176
+ status:
2177
+ code: 200
2178
+ message: OK
2179
+ headers:
2180
+ Date:
2181
+ - Wed, 01 Apr 2015 08:53:18 GMT
2182
+ Content-Type:
2183
+ - application/json
2184
+ Content-Length:
2185
+ - '538'
2186
+ P3p:
2187
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2188
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2189
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2190
+ Cache-Control:
2191
+ - private
2192
+ X-Served-By:
2193
+ - www251.flickr.bf1.yahoo.com
2194
+ Vary:
2195
+ - Accept-Encoding
2196
+ Age:
2197
+ - '0'
2198
+ Via:
2199
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2200
+ http/1.1 r07.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
2201
+ Server:
2202
+ - ATS
2203
+ Strict-Transport-Security:
2204
+ - max-age=259200
2205
+ Connection:
2206
+ - keep-alive
2207
+ body:
2208
+ encoding: ASCII-8BIT
2209
+ string: '{"photo":{"id":"16773754717","secret":"fc733f56c2","server":"7622","farm":8,"dateuploaded":"1427740100","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"434188e4af","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Senettis"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427740100","taken":"2015-03-29
2210
+ 16:47:42","takengranularity":"0","takenunknown":"0","lastupdate":"1427740155"},"views":"25","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16773754717\/"}]},"media":"photo"},"stat":"ok"}'
2211
+ http_version:
2212
+ recorded_at: Wed, 01 Apr 2015 08:53:20 GMT
2213
+ - request:
2214
+ method: post
2215
+ uri: https://api.flickr.com/services/rest/
2216
+ body:
2217
+ encoding: US-ASCII
2218
+ string: method=flickr.photos.licenses.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="<FLICKR_API_KEY>",
2228
+ oauth_nonce="waBHnSLyXbL1Bf4fxXJHzPzchF3J%2BbtJxU624O1lkc0%3D", oauth_signature="<FLICKR_SECRET>%26",
2229
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427878400", oauth_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, 01 Apr 2015 08:53:18 GMT
2240
+ Content-Type:
2241
+ - application/json
2242
+ Content-Length:
2243
+ - '371'
2244
+ P3p:
2245
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
2246
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
2247
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
2248
+ Cache-Control:
2249
+ - private
2250
+ X-Served-By:
2251
+ - www326.flickr.bf1.yahoo.com
2252
+ Vary:
2253
+ - Accept-Encoding
2254
+ Age:
2255
+ - '0'
2256
+ Via:
2257
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2258
+ http/1.1 r14.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
2259
+ Server:
2260
+ - ATS
2261
+ Strict-Transport-Security:
2262
+ - max-age=259200
2263
+ Connection:
2264
+ - keep-alive
2265
+ body:
2266
+ encoding: ASCII-8BIT
2267
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
2268
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
2269
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
2270
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
2271
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
2272
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
2273
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
2274
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
2275
+ States Government Work","url":"http:\/\/www.usa.gov\/copyright.shtml"},{"id":"9","name":"Public
2276
+ Domain Dedication (CC0)","url":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/"},{"id":"10","name":"Public
2277
+ Domain Mark","url":"https:\/\/creativecommons.org\/publicdomain\/mark\/1.0\/"}]},"stat":"ok"}'
1033
2278
  http_version:
1034
- recorded_at: Wed, 11 Mar 2015 17:13:14 GMT
2279
+ recorded_at: Wed, 01 Apr 2015 08:53:20 GMT
1035
2280
  recorded_with: VCR 2.9.3