purdie 0.0.12 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,131 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.flickr.com/services/rest/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: photo_id=15631479625&method=flickr.photos.getInfo&format=json&nojsoncallback=1
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - FlickRaw/0.9.8
16
+ Authorization:
17
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
18
+ oauth_nonce="7Vg7ww4XRmM7m4YYW%2Fmo4CdtF72V2Gl8Ci2x4UV%2FgUs%3D", oauth_signature="<FLICKR_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427833244", oauth_token="",
20
+ oauth_version="1.0"
21
+ Content-Type:
22
+ - application/x-www-form-urlencoded
23
+ response:
24
+ status:
25
+ code: 200
26
+ message: OK
27
+ headers:
28
+ Date:
29
+ - Tue, 31 Mar 2015 20:20:45 GMT
30
+ Content-Type:
31
+ - application/json
32
+ Content-Length:
33
+ - '665'
34
+ P3p:
35
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
36
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
37
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
38
+ Cache-Control:
39
+ - private
40
+ X-Served-By:
41
+ - www272.flickr.bf1.yahoo.com
42
+ Vary:
43
+ - Accept-Encoding
44
+ Age:
45
+ - '0'
46
+ Via:
47
+ - http/1.1 fts104.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r24.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
49
+ Server:
50
+ - ATS
51
+ Strict-Transport-Security:
52
+ - max-age=259200
53
+ Connection:
54
+ - keep-alive
55
+ body:
56
+ encoding: ASCII-8BIT
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
58
+ Funk Maharishi","location":"","iconserver":"3933","iconfarm":4,"path_alias":"rawfunkmaharishi"},"title":{"_content":"The
59
+ Comedy, October 2014"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1414326010","taken":"2014-10-22
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
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"}'
62
+ http_version:
63
+ recorded_at: Tue, 31 Mar 2015 20:20:45 GMT
64
+ - request:
65
+ method: post
66
+ uri: https://api.flickr.com/services/rest/
67
+ body:
68
+ encoding: US-ASCII
69
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
70
+ headers:
71
+ Accept-Encoding:
72
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
73
+ Accept:
74
+ - "*/*"
75
+ User-Agent:
76
+ - FlickRaw/0.9.8
77
+ Authorization:
78
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
79
+ oauth_nonce="dR8kuzK733qDKSm2F5lurURSPqcTWIBXQspxoLdA7LE%3D", oauth_signature="<FLICKR_SECRET>%26",
80
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427833245", oauth_token="",
81
+ oauth_version="1.0"
82
+ Content-Type:
83
+ - application/x-www-form-urlencoded
84
+ response:
85
+ status:
86
+ code: 200
87
+ message: OK
88
+ headers:
89
+ Date:
90
+ - Tue, 31 Mar 2015 20:20:45 GMT
91
+ Content-Type:
92
+ - application/json
93
+ Content-Length:
94
+ - '371'
95
+ P3p:
96
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
97
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
98
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
99
+ Cache-Control:
100
+ - private
101
+ X-Served-By:
102
+ - www58.flickr.bf1.yahoo.com
103
+ Vary:
104
+ - Accept-Encoding
105
+ Age:
106
+ - '0'
107
+ Via:
108
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
109
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
110
+ Server:
111
+ - ATS
112
+ Strict-Transport-Security:
113
+ - max-age=259200
114
+ Connection:
115
+ - keep-alive
116
+ body:
117
+ encoding: ASCII-8BIT
118
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
119
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
120
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
121
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
122
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
123
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
124
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
125
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
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"}'
129
+ http_version:
130
+ recorded_at: Tue, 31 Mar 2015 20:20:45 GMT
131
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,129 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.flickr.com/services/rest/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: photo_id=16393865760&method=flickr.photos.getInfo&format=json&nojsoncallback=1
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - FlickRaw/0.9.8
16
+ Authorization:
17
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
18
+ oauth_nonce="SnAm55eIbh3QWhS2mO3W0N1qmJvaXcS2Ed%2FDiMyB0bA%3D", oauth_signature="<FLICKR_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832605", oauth_token="",
20
+ oauth_version="1.0"
21
+ Content-Type:
22
+ - application/x-www-form-urlencoded
23
+ response:
24
+ status:
25
+ code: 200
26
+ message: OK
27
+ headers:
28
+ Date:
29
+ - Tue, 31 Mar 2015 20:10:06 GMT
30
+ Content-Type:
31
+ - application/json
32
+ Content-Length:
33
+ - '546'
34
+ P3p:
35
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
36
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
37
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
38
+ Cache-Control:
39
+ - private
40
+ X-Served-By:
41
+ - www250.flickr.bf1.yahoo.com
42
+ Vary:
43
+ - Accept-Encoding
44
+ Age:
45
+ - '0'
46
+ Via:
47
+ - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r06.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
49
+ Server:
50
+ - ATS
51
+ Strict-Transport-Security:
52
+ - max-age=259200
53
+ Connection:
54
+ - keep-alive
55
+ body:
56
+ encoding: ASCII-8BIT
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
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
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"}'
60
+ http_version:
61
+ recorded_at: Tue, 31 Mar 2015 20:10:06 GMT
62
+ - request:
63
+ method: post
64
+ uri: https://api.flickr.com/services/rest/
65
+ body:
66
+ encoding: US-ASCII
67
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
68
+ headers:
69
+ Accept-Encoding:
70
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
71
+ Accept:
72
+ - "*/*"
73
+ User-Agent:
74
+ - FlickRaw/0.9.8
75
+ Authorization:
76
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
77
+ oauth_nonce="9byljofPL4fvvD0tPLSI8TF5F28mAwbiKUipFDjgE6w%3D", oauth_signature="<FLICKR_SECRET>%26",
78
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832606", oauth_token="",
79
+ oauth_version="1.0"
80
+ Content-Type:
81
+ - application/x-www-form-urlencoded
82
+ response:
83
+ status:
84
+ code: 200
85
+ message: OK
86
+ headers:
87
+ Date:
88
+ - Tue, 31 Mar 2015 20:10:07 GMT
89
+ Content-Type:
90
+ - application/json
91
+ Content-Length:
92
+ - '371'
93
+ P3p:
94
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
95
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
96
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
97
+ Cache-Control:
98
+ - private
99
+ X-Served-By:
100
+ - www282.flickr.bf1.yahoo.com
101
+ Vary:
102
+ - Accept-Encoding
103
+ Age:
104
+ - '1'
105
+ Via:
106
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
107
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
108
+ Server:
109
+ - ATS
110
+ Strict-Transport-Security:
111
+ - max-age=259200
112
+ Connection:
113
+ - keep-alive
114
+ body:
115
+ encoding: ASCII-8BIT
116
+ string: '{"licenses":{"license":[{"id":"0","name":"All Rights Reserved","url":""},{"id":"4","name":"Attribution
117
+ License","url":"https:\/\/creativecommons.org\/licenses\/by\/2.0\/"},{"id":"6","name":"Attribution-NoDerivs
118
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nd\/2.0\/"},{"id":"3","name":"Attribution-NonCommercial-NoDerivs
119
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-nd\/2.0\/"},{"id":"2","name":"Attribution-NonCommercial
120
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc\/2.0\/"},{"id":"1","name":"Attribution-NonCommercial-ShareAlike
121
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-nc-sa\/2.0\/"},{"id":"5","name":"Attribution-ShareAlike
122
+ License","url":"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/"},{"id":"7","name":"No
123
+ known copyright restrictions","url":"https:\/\/www.flickr.com\/commons\/usage\/"},{"id":"8","name":"United
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"}'
127
+ http_version:
128
+ recorded_at: Tue, 31 Mar 2015 20:10:07 GMT
129
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,2280 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.flickr.com/services/rest/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: photoset_id=72157649827363868&method=flickr.photosets.getPhotos&format=json&nojsoncallback=1
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - FlickRaw/0.9.8
16
+ Authorization:
17
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
18
+ oauth_nonce="MpQo%2FKrNWxLpKGdnZPULNJhUipd7smrIoq06Aha9FsM%3D", oauth_signature="<FLICKR_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832268", oauth_token="",
20
+ oauth_version="1.0"
21
+ Content-Type:
22
+ - application/x-www-form-urlencoded
23
+ response:
24
+ status:
25
+ code: 200
26
+ message: OK
27
+ headers:
28
+ Date:
29
+ - Tue, 31 Mar 2015 20:04:28 GMT
30
+ Content-Type:
31
+ - application/json
32
+ Content-Length:
33
+ - '569'
34
+ P3p:
35
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
36
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
37
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
38
+ Cache-Control:
39
+ - private
40
+ X-Served-By:
41
+ - www231.flickr.bf1.yahoo.com
42
+ Vary:
43
+ - Accept-Encoding
44
+ Age:
45
+ - '0'
46
+ Via:
47
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r04.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
49
+ Server:
50
+ - ATS
51
+ Strict-Transport-Security:
52
+ - max-age=259200
53
+ Connection:
54
+ - keep-alive
55
+ body:
56
+ encoding: ASCII-8BIT
57
+ string: '{"photoset":{"id":"72157649827363868","primary":"16252009191","owner":"73135567@N00","ownername":"pikesley","photo":[{"id":"16252009191","secret":"ea2d06e6bb","server":"7506","farm":8,"title":"First
58
+ planting of the year","isprimary":"1","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16308144622","secret":"4822b81b0e","server":"7480","farm":8,"title":"Seedlings","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16202827068","secret":"ee50e0cb1c","server":"7357","farm":8,"title":"Tomato
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
60
+ kit","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0},{"id":"16367228619","secret":"3af2aba147","server":"8660","farm":9,"title":"Embothrium
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
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
65
+ 2015"},"stat":"ok"}'
66
+ http_version:
67
+ recorded_at: Tue, 31 Mar 2015 20:04:29 GMT
68
+ - request:
69
+ method: post
70
+ uri: https://api.flickr.com/services/rest/
71
+ body:
72
+ encoding: US-ASCII
73
+ string: photo_id=16252009191&method=flickr.photos.getInfo&format=json&nojsoncallback=1
74
+ headers:
75
+ Accept-Encoding:
76
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
77
+ Accept:
78
+ - "*/*"
79
+ User-Agent:
80
+ - FlickRaw/0.9.8
81
+ Authorization:
82
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
83
+ oauth_nonce="JrqqVWeOBfrNRSnp0cOurg8uGQDAswwRnehUhLYGjuQ%3D", oauth_signature="<FLICKR_SECRET>%26",
84
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832269", oauth_token="",
85
+ oauth_version="1.0"
86
+ Content-Type:
87
+ - application/x-www-form-urlencoded
88
+ response:
89
+ status:
90
+ code: 200
91
+ message: OK
92
+ headers:
93
+ Date:
94
+ - Tue, 31 Mar 2015 20:04:29 GMT
95
+ Content-Type:
96
+ - application/json
97
+ Content-Length:
98
+ - '555'
99
+ P3p:
100
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
101
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
102
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
103
+ Cache-Control:
104
+ - private
105
+ X-Served-By:
106
+ - www346.flickr.bf1.yahoo.com
107
+ Vary:
108
+ - Accept-Encoding
109
+ Age:
110
+ - '0'
111
+ Via:
112
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
113
+ http/1.1 r09.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
114
+ Server:
115
+ - ATS
116
+ Strict-Transport-Security:
117
+ - max-age=259200
118
+ Connection:
119
+ - keep-alive
120
+ body:
121
+ encoding: ASCII-8BIT
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
123
+ planting of the year"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1420982656","taken":"2015-01-11
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"}'
125
+ http_version:
126
+ recorded_at: Tue, 31 Mar 2015 20:04:29 GMT
127
+ - request:
128
+ method: post
129
+ uri: https://api.flickr.com/services/rest/
130
+ body:
131
+ encoding: US-ASCII
132
+ string: photo_id=16308144622&method=flickr.photos.getInfo&format=json&nojsoncallback=1
133
+ headers:
134
+ Accept-Encoding:
135
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
136
+ Accept:
137
+ - "*/*"
138
+ User-Agent:
139
+ - FlickRaw/0.9.8
140
+ Authorization:
141
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
142
+ oauth_nonce="tKtXWXmi35%2F6vFZFB2x4vH7nTeqmXpyiPnnmv8nEnUc%3D", oauth_signature="<FLICKR_SECRET>%26",
143
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832269", oauth_token="",
144
+ oauth_version="1.0"
145
+ Content-Type:
146
+ - application/x-www-form-urlencoded
147
+ response:
148
+ status:
149
+ code: 200
150
+ message: OK
151
+ headers:
152
+ Date:
153
+ - Tue, 31 Mar 2015 20:04:29 GMT
154
+ Content-Type:
155
+ - application/json
156
+ Content-Length:
157
+ - '544'
158
+ P3p:
159
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
160
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
161
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
162
+ Cache-Control:
163
+ - private
164
+ X-Served-By:
165
+ - www222.flickr.bf1.yahoo.com
166
+ Vary:
167
+ - Accept-Encoding
168
+ Age:
169
+ - '0'
170
+ Via:
171
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
172
+ http/1.1 r05.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
173
+ Server:
174
+ - ATS
175
+ Strict-Transport-Security:
176
+ - max-age=259200
177
+ Connection:
178
+ - keep-alive
179
+ body:
180
+ encoding: ASCII-8BIT
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
182
+ 15:31:34","takengranularity":"0","takenunknown":"0","lastupdate":"1421592677"},"views":"179","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"}'
183
+ http_version:
184
+ recorded_at: Tue, 31 Mar 2015 20:04:29 GMT
185
+ - request:
186
+ method: post
187
+ uri: https://api.flickr.com/services/rest/
188
+ body:
189
+ encoding: US-ASCII
190
+ string: photo_id=16202827068&method=flickr.photos.getInfo&format=json&nojsoncallback=1
191
+ headers:
192
+ Accept-Encoding:
193
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
194
+ Accept:
195
+ - "*/*"
196
+ User-Agent:
197
+ - FlickRaw/0.9.8
198
+ Authorization:
199
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
200
+ oauth_nonce="Nxk107SgnCv5ljWfP6J467Y98KZb9C7T4Kn7qBrhd8c%3D", oauth_signature="<FLICKR_SECRET>%26",
201
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832269", oauth_token="",
202
+ oauth_version="1.0"
203
+ Content-Type:
204
+ - application/x-www-form-urlencoded
205
+ response:
206
+ status:
207
+ code: 200
208
+ message: OK
209
+ headers:
210
+ Date:
211
+ - Tue, 31 Mar 2015 20:04:30 GMT
212
+ Content-Type:
213
+ - application/json
214
+ Content-Length:
215
+ - '542'
216
+ P3p:
217
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
218
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
219
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
220
+ Cache-Control:
221
+ - private
222
+ X-Served-By:
223
+ - www298.flickr.bf1.yahoo.com
224
+ Vary:
225
+ - Accept-Encoding
226
+ Age:
227
+ - '1'
228
+ Via:
229
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
230
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
231
+ Server:
232
+ - ATS
233
+ Strict-Transport-Security:
234
+ - max-age=259200
235
+ Connection:
236
+ - keep-alive
237
+ body:
238
+ encoding: ASCII-8BIT
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
240
+ farm"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476532","taken":"2015-01-28
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"}'
242
+ http_version:
243
+ recorded_at: Tue, 31 Mar 2015 20:04:30 GMT
244
+ - request:
245
+ method: post
246
+ uri: https://api.flickr.com/services/rest/
247
+ body:
248
+ encoding: US-ASCII
249
+ string: photo_id=16388723891&method=flickr.photos.getInfo&format=json&nojsoncallback=1
250
+ headers:
251
+ Accept-Encoding:
252
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
253
+ Accept:
254
+ - "*/*"
255
+ User-Agent:
256
+ - FlickRaw/0.9.8
257
+ Authorization:
258
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
259
+ oauth_nonce="Wn%2FhJv3n5%2BgQGujWlHssQ7CbsY%2Bn%2B3o1eH9x63IdNuM%3D", oauth_signature="<FLICKR_SECRET>%26",
260
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832270", oauth_token="",
261
+ oauth_version="1.0"
262
+ Content-Type:
263
+ - application/x-www-form-urlencoded
264
+ response:
265
+ status:
266
+ code: 200
267
+ message: OK
268
+ headers:
269
+ Date:
270
+ - Tue, 31 Mar 2015 20:04:30 GMT
271
+ Content-Type:
272
+ - application/json
273
+ Content-Length:
274
+ - '541'
275
+ P3p:
276
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
277
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
278
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
279
+ Cache-Control:
280
+ - private
281
+ X-Served-By:
282
+ - www43.flickr.bf1.yahoo.com
283
+ Vary:
284
+ - Accept-Encoding
285
+ Age:
286
+ - '0'
287
+ Via:
288
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
289
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
290
+ Server:
291
+ - ATS
292
+ Strict-Transport-Security:
293
+ - max-age=259200
294
+ Connection:
295
+ - keep-alive
296
+ body:
297
+ encoding: ASCII-8BIT
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
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"}'
300
+ http_version:
301
+ recorded_at: Tue, 31 Mar 2015 20:04:30 GMT
302
+ - request:
303
+ method: post
304
+ uri: https://api.flickr.com/services/rest/
305
+ body:
306
+ encoding: US-ASCII
307
+ string: photo_id=16308619689&method=flickr.photos.getInfo&format=json&nojsoncallback=1
308
+ headers:
309
+ Accept-Encoding:
310
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
311
+ Accept:
312
+ - "*/*"
313
+ User-Agent:
314
+ - FlickRaw/0.9.8
315
+ Authorization:
316
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
317
+ oauth_nonce="%2FcjUfwjHX0DFo6BuoZlJanqN99PKIySWjkGF91VDy6A%3D", oauth_signature="<FLICKR_SECRET>%26",
318
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832270", oauth_token="",
319
+ oauth_version="1.0"
320
+ Content-Type:
321
+ - application/x-www-form-urlencoded
322
+ response:
323
+ status:
324
+ code: 200
325
+ message: OK
326
+ headers:
327
+ Date:
328
+ - Tue, 31 Mar 2015 20:04:30 GMT
329
+ Content-Type:
330
+ - application/json
331
+ Content-Length:
332
+ - '546'
333
+ P3p:
334
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
335
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
336
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
337
+ Cache-Control:
338
+ - private
339
+ X-Served-By:
340
+ - www35.flickr.bf1.yahoo.com
341
+ Vary:
342
+ - Accept-Encoding
343
+ Age:
344
+ - '0'
345
+ Via:
346
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
347
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
348
+ Server:
349
+ - ATS
350
+ Strict-Transport-Security:
351
+ - max-age=259200
352
+ Connection:
353
+ - keep-alive
354
+ body:
355
+ encoding: ASCII-8BIT
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
357
+ kit"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1423599466","taken":"2015-02-10
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"}'
359
+ http_version:
360
+ recorded_at: Tue, 31 Mar 2015 20:04:31 GMT
361
+ - request:
362
+ method: post
363
+ uri: https://api.flickr.com/services/rest/
364
+ body:
365
+ encoding: US-ASCII
366
+ string: photo_id=16367228619&method=flickr.photos.getInfo&format=json&nojsoncallback=1
367
+ headers:
368
+ Accept-Encoding:
369
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
370
+ Accept:
371
+ - "*/*"
372
+ User-Agent:
373
+ - FlickRaw/0.9.8
374
+ Authorization:
375
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
376
+ oauth_nonce="0i2kdEbJdt0kmgKzLGuxPVjEFRU%2B5fQo3WhLqbxWKaQ%3D", oauth_signature="<FLICKR_SECRET>%26",
377
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832271", oauth_token="",
378
+ oauth_version="1.0"
379
+ Content-Type:
380
+ - application/x-www-form-urlencoded
381
+ response:
382
+ status:
383
+ code: 200
384
+ message: OK
385
+ headers:
386
+ Date:
387
+ - Tue, 31 Mar 2015 20:04:31 GMT
388
+ Content-Type:
389
+ - application/json
390
+ Content-Length:
391
+ - '551'
392
+ P3p:
393
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
394
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
395
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
396
+ Cache-Control:
397
+ - private
398
+ X-Served-By:
399
+ - www340.flickr.bf1.yahoo.com
400
+ Vary:
401
+ - Accept-Encoding
402
+ Age:
403
+ - '0'
404
+ Via:
405
+ - http/1.1 fts113.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
406
+ http/1.1 r05.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
407
+ Server:
408
+ - ATS
409
+ Strict-Transport-Security:
410
+ - max-age=259200
411
+ Connection:
412
+ - keep-alive
413
+ body:
414
+ encoding: ASCII-8BIT
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
416
+ seedling"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1424124245","taken":"2015-02-16
417
+ 23:03:06","takengranularity":"0","takenunknown":"0","lastupdate":"1424125294"},"views":"81","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"}'
418
+ http_version:
419
+ recorded_at: Tue, 31 Mar 2015 20:04:31 GMT
420
+ - request:
421
+ method: post
422
+ uri: https://api.flickr.com/services/rest/
423
+ body:
424
+ encoding: US-ASCII
425
+ string: photo_id=16752302412&method=flickr.photos.getInfo&format=json&nojsoncallback=1
426
+ headers:
427
+ Accept-Encoding:
428
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
429
+ Accept:
430
+ - "*/*"
431
+ User-Agent:
432
+ - FlickRaw/0.9.8
433
+ Authorization:
434
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
435
+ oauth_nonce="gLRv4Z%2BjtcPPdXhBB4xf%2BnKqBteXxTZFpaXXKZRymLU%3D", oauth_signature="<FLICKR_SECRET>%26",
436
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832271", oauth_token="",
437
+ oauth_version="1.0"
438
+ Content-Type:
439
+ - application/x-www-form-urlencoded
440
+ response:
441
+ status:
442
+ code: 200
443
+ message: OK
444
+ headers:
445
+ Date:
446
+ - Tue, 31 Mar 2015 20:04:31 GMT
447
+ Content-Type:
448
+ - application/json
449
+ Content-Length:
450
+ - '545'
451
+ P3p:
452
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
453
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
454
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
455
+ Cache-Control:
456
+ - private
457
+ X-Served-By:
458
+ - www68.flickr.bf1.yahoo.com
459
+ Vary:
460
+ - Accept-Encoding
461
+ Age:
462
+ - '0'
463
+ Via:
464
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
465
+ http/1.1 r05.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
466
+ Server:
467
+ - ATS
468
+ Strict-Transport-Security:
469
+ - max-age=259200
470
+ Connection:
471
+ - keep-alive
472
+ body:
473
+ encoding: ASCII-8BIT
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
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"}'
476
+ http_version:
477
+ recorded_at: Tue, 31 Mar 2015 20:04:31 GMT
478
+ - request:
479
+ method: post
480
+ uri: https://api.flickr.com/services/rest/
481
+ body:
482
+ encoding: US-ASCII
483
+ string: photo_id=16752239531&method=flickr.photos.getInfo&format=json&nojsoncallback=1
484
+ headers:
485
+ Accept-Encoding:
486
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
487
+ Accept:
488
+ - "*/*"
489
+ User-Agent:
490
+ - FlickRaw/0.9.8
491
+ Authorization:
492
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
493
+ oauth_nonce="2EgUh%2Fh7vuHmHpLmpRhCmP5ZZpeBQjrCwu9pRJaLaac%3D", oauth_signature="<FLICKR_SECRET>%26",
494
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832271", oauth_token="",
495
+ oauth_version="1.0"
496
+ Content-Type:
497
+ - application/x-www-form-urlencoded
498
+ response:
499
+ status:
500
+ code: 200
501
+ message: OK
502
+ headers:
503
+ Date:
504
+ - Tue, 31 Mar 2015 20:04:32 GMT
505
+ Content-Type:
506
+ - application/json
507
+ Content-Length:
508
+ - '602'
509
+ P3p:
510
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
511
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
512
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
513
+ Cache-Control:
514
+ - private
515
+ X-Served-By:
516
+ - www335.flickr.bf1.yahoo.com
517
+ Vary:
518
+ - Accept-Encoding
519
+ Age:
520
+ - '2'
521
+ Via:
522
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
523
+ http/1.1 r05.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
524
+ Server:
525
+ - ATS
526
+ Strict-Transport-Security:
527
+ - max-age=259200
528
+ Connection:
529
+ - keep-alive
530
+ body:
531
+ encoding: ASCII-8BIT
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
533
+ pots"},"description":{"_content":"Chives, tarragon, sage, thyme, rosemary,
534
+ spinachy things, chocolate mint, potato bags\n"},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824917","taken":"2015-03-08
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"}'
536
+ http_version:
537
+ recorded_at: Tue, 31 Mar 2015 20:04:32 GMT
538
+ - request:
539
+ method: post
540
+ uri: https://api.flickr.com/services/rest/
541
+ body:
542
+ encoding: US-ASCII
543
+ string: photo_id=16781381829&method=flickr.photos.getInfo&format=json&nojsoncallback=1
544
+ headers:
545
+ Accept-Encoding:
546
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
547
+ Accept:
548
+ - "*/*"
549
+ User-Agent:
550
+ - FlickRaw/0.9.8
551
+ Authorization:
552
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
553
+ oauth_nonce="EjUjqeoQSQJjR12flaKcGbet7FfioH4JCxawFWxxDZY%3D", oauth_signature="<FLICKR_SECRET>%26",
554
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832272", oauth_token="",
555
+ oauth_version="1.0"
556
+ Content-Type:
557
+ - application/x-www-form-urlencoded
558
+ response:
559
+ status:
560
+ code: 200
561
+ message: OK
562
+ headers:
563
+ Date:
564
+ - Tue, 31 Mar 2015 20:04:32 GMT
565
+ Content-Type:
566
+ - application/json
567
+ Content-Length:
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
+ - www303.flickr.bf1.yahoo.com
577
+ Vary:
578
+ - Accept-Encoding
579
+ Age:
580
+ - '0'
581
+ Via:
582
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
583
+ http/1.1 r11.ycpi.ams.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":"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\/16781381829\/"}]},"media":"photo"},"stat":"ok"}'
595
+ http_version:
596
+ recorded_at: Tue, 31 Mar 2015 20:04:32 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="vsEfa%2BJkPJl3jcg6FFTdslXVh2y%2BMA4TeK%2Bp4PURxpo%3D", oauth_signature="<FLICKR_SECRET>%26",
613
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832272", 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
+ - Tue, 31 Mar 2015 20:04:32 GMT
624
+ Content-Type:
625
+ - application/json
626
+ Content-Length:
627
+ - '543'
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
+ - www331.flickr.bf1.yahoo.com
636
+ Vary:
637
+ - Accept-Encoding
638
+ Age:
639
+ - '0'
640
+ Via:
641
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
642
+ http/1.1 r11.ycpi.ams.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":"28","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: Tue, 31 Mar 2015 20:04:33 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="yg3jECKBXD%2FlH7i9gneMp9W%2Fw0jf%2Bwfhz6Ggkvy3GiY%3D", oauth_signature="<FLICKR_SECRET>%26",
672
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832273", 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
+ - Tue, 31 Mar 2015 20:04:33 GMT
683
+ Content-Type:
684
+ - application/json
685
+ Content-Length:
686
+ - '539'
687
+ P3p:
688
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
689
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
690
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
691
+ Cache-Control:
692
+ - private
693
+ X-Served-By:
694
+ - www23.flickr.bf1.yahoo.com
695
+ Vary:
696
+ - Accept-Encoding
697
+ Age:
698
+ - '0'
699
+ Via:
700
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
701
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
702
+ Server:
703
+ - ATS
704
+ Strict-Transport-Security:
705
+ - max-age=259200
706
+ Connection:
707
+ - keep-alive
708
+ body:
709
+ encoding: ASCII-8BIT
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":"31","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"}'
712
+ http_version:
713
+ recorded_at: Tue, 31 Mar 2015 20:04:33 GMT
714
+ - request:
715
+ method: post
716
+ uri: https://api.flickr.com/services/rest/
717
+ body:
718
+ encoding: US-ASCII
719
+ string: photo_id=16773754717&method=flickr.photos.getInfo&format=json&nojsoncallback=1
720
+ headers:
721
+ Accept-Encoding:
722
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
723
+ Accept:
724
+ - "*/*"
725
+ User-Agent:
726
+ - FlickRaw/0.9.8
727
+ Authorization:
728
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
729
+ oauth_nonce="roLz58YdhzrbWun2pLYu8NAH7G7Qrb8MTjv3NExqejE%3D", oauth_signature="<FLICKR_SECRET>%26",
730
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832273", oauth_token="",
731
+ oauth_version="1.0"
732
+ Content-Type:
733
+ - application/x-www-form-urlencoded
734
+ response:
735
+ status:
736
+ code: 200
737
+ message: OK
738
+ headers:
739
+ Date:
740
+ - Tue, 31 Mar 2015 20:04:33 GMT
741
+ Content-Type:
742
+ - application/json
743
+ Content-Length:
744
+ - '538'
745
+ P3p:
746
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
747
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
748
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
749
+ Cache-Control:
750
+ - private
751
+ X-Served-By:
752
+ - www264.flickr.bf1.yahoo.com
753
+ Vary:
754
+ - Accept-Encoding
755
+ Age:
756
+ - '0'
757
+ Via:
758
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
759
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
760
+ Server:
761
+ - ATS
762
+ Strict-Transport-Security:
763
+ - max-age=259200
764
+ Connection:
765
+ - keep-alive
766
+ body:
767
+ encoding: ASCII-8BIT
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"}'
770
+ http_version:
771
+ recorded_at: Tue, 31 Mar 2015 20:04:33 GMT
772
+ - request:
773
+ method: post
774
+ uri: https://api.flickr.com/services/rest/
775
+ body:
776
+ encoding: US-ASCII
777
+ string: photo_id=16252009191&method=flickr.photos.getInfo&format=json&nojsoncallback=1
778
+ headers:
779
+ Accept-Encoding:
780
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
781
+ Accept:
782
+ - "*/*"
783
+ User-Agent:
784
+ - FlickRaw/0.9.8
785
+ Authorization:
786
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
787
+ oauth_nonce="iSf88n5ij4BqIkmfixRNMGaFN3RObRqb3oKO%2FVATbbY%3D", oauth_signature="<FLICKR_SECRET>%26",
788
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832273", oauth_token="",
789
+ oauth_version="1.0"
790
+ Content-Type:
791
+ - application/x-www-form-urlencoded
792
+ response:
793
+ status:
794
+ code: 200
795
+ message: OK
796
+ headers:
797
+ Date:
798
+ - Tue, 31 Mar 2015 20:04:34 GMT
799
+ Content-Type:
800
+ - application/json
801
+ Content-Length:
802
+ - '555'
803
+ P3p:
804
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
805
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
806
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
807
+ Cache-Control:
808
+ - private
809
+ X-Served-By:
810
+ - www271.flickr.bf1.yahoo.com
811
+ Vary:
812
+ - Accept-Encoding
813
+ Age:
814
+ - '2'
815
+ Via:
816
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
817
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
818
+ Server:
819
+ - ATS
820
+ Strict-Transport-Security:
821
+ - max-age=259200
822
+ Connection:
823
+ - keep-alive
824
+ body:
825
+ encoding: ASCII-8BIT
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"}'
829
+ http_version:
830
+ recorded_at: Tue, 31 Mar 2015 20:04:34 GMT
831
+ - request:
832
+ method: post
833
+ uri: https://api.flickr.com/services/rest/
834
+ body:
835
+ encoding: US-ASCII
836
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
837
+ headers:
838
+ Accept-Encoding:
839
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
840
+ Accept:
841
+ - "*/*"
842
+ User-Agent:
843
+ - FlickRaw/0.9.8
844
+ Authorization:
845
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
846
+ oauth_nonce="jHjUJWSU2XdR8MZHFRiieAOkz%2FtPDv5Xb3kkTbfswtQ%3D", oauth_signature="<FLICKR_SECRET>%26",
847
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832274", oauth_token="",
848
+ oauth_version="1.0"
849
+ Content-Type:
850
+ - application/x-www-form-urlencoded
851
+ response:
852
+ status:
853
+ code: 200
854
+ message: OK
855
+ headers:
856
+ Date:
857
+ - Tue, 31 Mar 2015 20:04:34 GMT
858
+ Content-Type:
859
+ - application/json
860
+ Content-Length:
861
+ - '371'
862
+ P3p:
863
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
864
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
865
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
866
+ Cache-Control:
867
+ - private
868
+ X-Served-By:
869
+ - www336.flickr.bf1.yahoo.com
870
+ Vary:
871
+ - Accept-Encoding
872
+ Age:
873
+ - '0'
874
+ Via:
875
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
876
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
877
+ Server:
878
+ - ATS
879
+ Strict-Transport-Security:
880
+ - max-age=259200
881
+ Connection:
882
+ - keep-alive
883
+ body:
884
+ encoding: ASCII-8BIT
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"}'
896
+ http_version:
897
+ recorded_at: Tue, 31 Mar 2015 20:04:34 GMT
898
+ - request:
899
+ method: post
900
+ uri: https://api.flickr.com/services/rest/
901
+ body:
902
+ encoding: US-ASCII
903
+ string: photo_id=16308144622&method=flickr.photos.getInfo&format=json&nojsoncallback=1
904
+ headers:
905
+ Accept-Encoding:
906
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
907
+ Accept:
908
+ - "*/*"
909
+ User-Agent:
910
+ - FlickRaw/0.9.8
911
+ Authorization:
912
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
913
+ oauth_nonce="sI9pL4D4nvg6NnsvbsR1U6pTSIPCJ7CKbf3JsHdnmT0%3D", oauth_signature="<FLICKR_SECRET>%26",
914
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832274", oauth_token="",
915
+ oauth_version="1.0"
916
+ Content-Type:
917
+ - application/x-www-form-urlencoded
918
+ response:
919
+ status:
920
+ code: 200
921
+ message: OK
922
+ headers:
923
+ Date:
924
+ - Tue, 31 Mar 2015 20:04:34 GMT
925
+ Content-Type:
926
+ - application/json
927
+ Content-Length:
928
+ - '544'
929
+ P3p:
930
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
931
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
932
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
933
+ Cache-Control:
934
+ - private
935
+ X-Served-By:
936
+ - www32.flickr.bf1.yahoo.com
937
+ Vary:
938
+ - Accept-Encoding
939
+ Age:
940
+ - '2'
941
+ Via:
942
+ - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
943
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
944
+ Server:
945
+ - ATS
946
+ Strict-Transport-Security:
947
+ - max-age=259200
948
+ Connection:
949
+ - keep-alive
950
+ body:
951
+ encoding: ASCII-8BIT
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":"179","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"}'
954
+ http_version:
955
+ recorded_at: Tue, 31 Mar 2015 20:04:35 GMT
956
+ - request:
957
+ method: post
958
+ uri: https://api.flickr.com/services/rest/
959
+ body:
960
+ encoding: US-ASCII
961
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
962
+ headers:
963
+ Accept-Encoding:
964
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
965
+ Accept:
966
+ - "*/*"
967
+ User-Agent:
968
+ - FlickRaw/0.9.8
969
+ Authorization:
970
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
971
+ oauth_nonce="rPPYkaMJCaoyhTflG9krfjsEEbRFAHaBag9KeCoy2sY%3D", oauth_signature="<FLICKR_SECRET>%26",
972
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832275", oauth_token="",
973
+ oauth_version="1.0"
974
+ Content-Type:
975
+ - application/x-www-form-urlencoded
976
+ response:
977
+ status:
978
+ code: 200
979
+ message: OK
980
+ headers:
981
+ Date:
982
+ - Tue, 31 Mar 2015 20:04:35 GMT
983
+ Content-Type:
984
+ - application/json
985
+ Content-Length:
986
+ - '371'
987
+ P3p:
988
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
989
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
990
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
991
+ Cache-Control:
992
+ - private
993
+ X-Served-By:
994
+ - www307.flickr.bf1.yahoo.com
995
+ Vary:
996
+ - Accept-Encoding
997
+ Age:
998
+ - '0'
999
+ Via:
1000
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1001
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
1002
+ Server:
1003
+ - ATS
1004
+ Strict-Transport-Security:
1005
+ - max-age=259200
1006
+ Connection:
1007
+ - keep-alive
1008
+ body:
1009
+ encoding: ASCII-8BIT
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"}'
1021
+ http_version:
1022
+ recorded_at: Tue, 31 Mar 2015 20:04:35 GMT
1023
+ - request:
1024
+ method: post
1025
+ uri: https://api.flickr.com/services/rest/
1026
+ body:
1027
+ encoding: US-ASCII
1028
+ string: photo_id=16202827068&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1029
+ headers:
1030
+ Accept-Encoding:
1031
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1032
+ Accept:
1033
+ - "*/*"
1034
+ User-Agent:
1035
+ - FlickRaw/0.9.8
1036
+ Authorization:
1037
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1038
+ oauth_nonce="CbV16WzMt7PxQLBtUDLMqAgyR7w6Y7DSx5P5lI370v4%3D", oauth_signature="<FLICKR_SECRET>%26",
1039
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832275", oauth_token="",
1040
+ oauth_version="1.0"
1041
+ Content-Type:
1042
+ - application/x-www-form-urlencoded
1043
+ response:
1044
+ status:
1045
+ code: 200
1046
+ message: OK
1047
+ headers:
1048
+ Date:
1049
+ - Tue, 31 Mar 2015 20:04:35 GMT
1050
+ Content-Type:
1051
+ - application/json
1052
+ Content-Length:
1053
+ - '542'
1054
+ P3p:
1055
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1056
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1057
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1058
+ Cache-Control:
1059
+ - private
1060
+ X-Served-By:
1061
+ - www334.flickr.bf1.yahoo.com
1062
+ Vary:
1063
+ - Accept-Encoding
1064
+ Age:
1065
+ - '0'
1066
+ Via:
1067
+ - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1068
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
1069
+ Server:
1070
+ - ATS
1071
+ Strict-Transport-Security:
1072
+ - max-age=259200
1073
+ Connection:
1074
+ - keep-alive
1075
+ body:
1076
+ encoding: ASCII-8BIT
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"}'
1080
+ http_version:
1081
+ recorded_at: Tue, 31 Mar 2015 20:04:35 GMT
1082
+ - request:
1083
+ method: post
1084
+ uri: https://api.flickr.com/services/rest/
1085
+ body:
1086
+ encoding: US-ASCII
1087
+ string: method=flickr.photos.licenses.getInfo&format=json&nojsoncallback=1
1088
+ headers:
1089
+ Accept-Encoding:
1090
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1091
+ Accept:
1092
+ - "*/*"
1093
+ User-Agent:
1094
+ - FlickRaw/0.9.8
1095
+ Authorization:
1096
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1097
+ oauth_nonce="fnhjdTXQnKA6nSD4kPvqUCQ5TUchUomOpZZyL2MX0V4%3D", oauth_signature="<FLICKR_SECRET>%26",
1098
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832275", oauth_token="",
1099
+ oauth_version="1.0"
1100
+ Content-Type:
1101
+ - application/x-www-form-urlencoded
1102
+ response:
1103
+ status:
1104
+ code: 200
1105
+ message: OK
1106
+ headers:
1107
+ Date:
1108
+ - Tue, 31 Mar 2015 20:04:36 GMT
1109
+ Content-Type:
1110
+ - application/json
1111
+ Content-Length:
1112
+ - '371'
1113
+ P3p:
1114
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1115
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1116
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1117
+ Cache-Control:
1118
+ - private
1119
+ X-Served-By:
1120
+ - www17.flickr.bf1.yahoo.com
1121
+ Vary:
1122
+ - Accept-Encoding
1123
+ Age:
1124
+ - '2'
1125
+ Via:
1126
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1127
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
1128
+ Server:
1129
+ - ATS
1130
+ Strict-Transport-Security:
1131
+ - max-age=259200
1132
+ Connection:
1133
+ - keep-alive
1134
+ body:
1135
+ encoding: ASCII-8BIT
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"}'
1147
+ http_version:
1148
+ recorded_at: Tue, 31 Mar 2015 20:04:36 GMT
1149
+ - request:
1150
+ method: post
1151
+ uri: https://api.flickr.com/services/rest/
1152
+ body:
1153
+ encoding: US-ASCII
1154
+ string: photo_id=16388723891&method=flickr.photos.getInfo&format=json&nojsoncallback=1
1155
+ headers:
1156
+ Accept-Encoding:
1157
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1158
+ Accept:
1159
+ - "*/*"
1160
+ User-Agent:
1161
+ - FlickRaw/0.9.8
1162
+ Authorization:
1163
+ - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
1164
+ oauth_nonce="ta2tOyXq%2FePqMwVyStmANsO7sCTupzNKfEg39O0Aw1g%3D", oauth_signature="<FLICKR_SECRET>%26",
1165
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832276", oauth_token="",
1166
+ oauth_version="1.0"
1167
+ Content-Type:
1168
+ - application/x-www-form-urlencoded
1169
+ response:
1170
+ status:
1171
+ code: 200
1172
+ message: OK
1173
+ headers:
1174
+ Date:
1175
+ - Tue, 31 Mar 2015 20:04:36 GMT
1176
+ Content-Type:
1177
+ - application/json
1178
+ Content-Length:
1179
+ - '541'
1180
+ P3p:
1181
+ - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
1182
+ TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
1183
+ ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
1184
+ Cache-Control:
1185
+ - private
1186
+ X-Served-By:
1187
+ - www280.flickr.bf1.yahoo.com
1188
+ Vary:
1189
+ - Accept-Encoding
1190
+ Age:
1191
+ - '0'
1192
+ Via:
1193
+ - http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1194
+ http/1.1 r11.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
1195
+ Server:
1196
+ - ATS
1197
+ Strict-Transport-Security:
1198
+ - max-age=259200
1199
+ Connection:
1200
+ - keep-alive
1201
+ body:
1202
+ encoding: ASCII-8BIT
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: Tue, 31 Mar 2015 20:04:36 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="w9quf5hjxoVQVyakCHUtB%2BCoyBSMD41CbaeRMkrxwjA%3D", oauth_signature="<FLICKR_SECRET>%26",
1223
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832276", 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
+ - Tue, 31 Mar 2015 20:04:36 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
+ - www25.flickr.bf1.yahoo.com
1246
+ Vary:
1247
+ - Accept-Encoding
1248
+ Age:
1249
+ - '0'
1250
+ Via:
1251
+ - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1252
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:37 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="Ap8reGUhn3Q18HljpxFDQDj5PzsXOozwWuUE%2FKTUU6I%3D", oauth_signature="<FLICKR_SECRET>%26",
1290
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832277", 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
+ - Tue, 31 Mar 2015 20:04:37 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
+ - www48.flickr.bf1.yahoo.com
1313
+ Vary:
1314
+ - Accept-Encoding
1315
+ Age:
1316
+ - '0'
1317
+ Via:
1318
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1319
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:37 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="wCuPJebQJo5ReB%2Ffg8ayaCTLX6G8GPJF89DLjUNiw1E%3D", oauth_signature="<FLICKR_SECRET>%26",
1349
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832277", 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
+ - Tue, 31 Mar 2015 20:04:37 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
+ - www250.flickr.bf1.yahoo.com
1372
+ Vary:
1373
+ - Accept-Encoding
1374
+ Age:
1375
+ - '0'
1376
+ Via:
1377
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1378
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:37 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="cCdRw6WxoKRgvQDn%2Fk1Fv%2BsRbMNB1maxjXdLMTH%2Fi78%3D", oauth_signature="<FLICKR_SECRET>%26",
1416
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832277", 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
+ - Tue, 31 Mar 2015 20:04:38 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
+ - www319.flickr.bf1.yahoo.com
1439
+ Vary:
1440
+ - Accept-Encoding
1441
+ Age:
1442
+ - '2'
1443
+ Via:
1444
+ - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1445
+ http/1.1 r11.ycpi.ams.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":"81","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: Tue, 31 Mar 2015 20:04:38 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="lJdCpEuv0xinChGgeSCu53Ag86kv2YtPTvCv9GqK6ZQ%3D", oauth_signature="<FLICKR_SECRET>%26",
1475
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832278", 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
+ - Tue, 31 Mar 2015 20:04:38 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
+ - www9.flickr.bf1.yahoo.com
1498
+ Vary:
1499
+ - Accept-Encoding
1500
+ Age:
1501
+ - '0'
1502
+ Via:
1503
+ - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1504
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:38 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="mfyRvnDvR7BfIzxQDnGxG0O5t8LFQqwtkIdsKulA5Qk%3D", oauth_signature="<FLICKR_SECRET>%26",
1542
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832278", 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
+ - Tue, 31 Mar 2015 20:04:38 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
+ - www37.flickr.bf1.yahoo.com
1565
+ Vary:
1566
+ - Accept-Encoding
1567
+ Age:
1568
+ - '0'
1569
+ Via:
1570
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1571
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:39 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="KcdkNFqvzZ2DcTTVgjdyI2gUAssUxPRKL27OhyjCxLc%3D", oauth_signature="<FLICKR_SECRET>%26",
1600
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832279", 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
+ - Tue, 31 Mar 2015 20:04:39 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
+ - www270.flickr.bf1.yahoo.com
1623
+ Vary:
1624
+ - Accept-Encoding
1625
+ Age:
1626
+ - '0'
1627
+ Via:
1628
+ - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1629
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:39 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="triHsiD4Jhmv8Y6omMI2qMs7XVXk5QfzBu9%2ByLjofWA%3D", oauth_signature="<FLICKR_SECRET>%26",
1667
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832279", 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
+ - Tue, 31 Mar 2015 20:04:39 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
+ - www64.flickr.bf1.yahoo.com
1690
+ Vary:
1691
+ - Accept-Encoding
1692
+ Age:
1693
+ - '0'
1694
+ Via:
1695
+ - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1696
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:39 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="NKCFyj6qHcKF2bXnwopUweazv%2Ff1Y1VLIiipie%2BrNdY%3D", oauth_signature="<FLICKR_SECRET>%26",
1727
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832279", 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
+ - Tue, 31 Mar 2015 20:04:39 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
+ - www53.flickr.bf1.yahoo.com
1750
+ Vary:
1751
+ - Accept-Encoding
1752
+ Age:
1753
+ - '2'
1754
+ Via:
1755
+ - http/1.1 fts125.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1756
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:40 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="c%2B1Wyq%2FYJeY%2FAIV50TlfY1tJdoveqn80d3NfGb80Y80%3D", oauth_signature="<FLICKR_SECRET>%26",
1794
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832280", 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
+ - Tue, 31 Mar 2015 20:04:40 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
+ - www49.flickr.bf1.yahoo.com
1817
+ Vary:
1818
+ - Accept-Encoding
1819
+ Age:
1820
+ - '0'
1821
+ Via:
1822
+ - http/1.1 fts113.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1823
+ http/1.1 r11.ycpi.ams.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":"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\/16781381829\/"}]},"media":"photo"},"stat":"ok"}'
1835
+ http_version:
1836
+ recorded_at: Tue, 31 Mar 2015 20:04:40 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="9HpyozEQbAYYb7jURdroVQThejdCLRQmbK2%2FSAYnzG4%3D", oauth_signature="<FLICKR_SECRET>%26",
1853
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832280", 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
+ - Tue, 31 Mar 2015 20:04:40 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
+ - www56.flickr.bf1.yahoo.com
1876
+ Vary:
1877
+ - Accept-Encoding
1878
+ Age:
1879
+ - '0'
1880
+ Via:
1881
+ - http/1.1 fts115.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1882
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:40 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="Gjn2Cm29uWmrizBmhn9%2FS7x3%2Fm0tu25lxXHx%2F7rOGLc%3D", oauth_signature="<FLICKR_SECRET>%26",
1920
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832280", 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
+ - Tue, 31 Mar 2015 20:04:41 GMT
1931
+ Content-Type:
1932
+ - application/json
1933
+ Content-Length:
1934
+ - '543'
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
+ - www49.flickr.bf1.yahoo.com
1943
+ Vary:
1944
+ - Accept-Encoding
1945
+ Age:
1946
+ - '2'
1947
+ Via:
1948
+ - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
1949
+ http/1.1 r11.ycpi.ams.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":"28","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: Tue, 31 Mar 2015 20:04:41 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="4ZJPQzBcDcD4ismRy17D%2FGz7N66jHq8ILcOlln%2Bb4QQ%3D", oauth_signature="<FLICKR_SECRET>%26",
1979
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832281", 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
+ - Tue, 31 Mar 2015 20:04:41 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
+ - www284.flickr.bf1.yahoo.com
2002
+ Vary:
2003
+ - Accept-Encoding
2004
+ Age:
2005
+ - '0'
2006
+ Via:
2007
+ - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2008
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:41 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="ygW0%2FVv%2BxkVzeU5d74MNgIxJmwyqX37eIPpblLG3TP0%3D", oauth_signature="<FLICKR_SECRET>%26",
2046
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832281", 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
+ - Tue, 31 Mar 2015 20:04:41 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
+ - www302.flickr.bf1.yahoo.com
2069
+ Vary:
2070
+ - Accept-Encoding
2071
+ Age:
2072
+ - '0'
2073
+ Via:
2074
+ - http/1.1 fts122.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2075
+ http/1.1 r11.ycpi.ams.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":"31","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: Tue, 31 Mar 2015 20:04:41 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="H%2Bknprq5b3XU7zPpxRF4sl33e5trTPiufo9jJ1lEs5A%3D", oauth_signature="<FLICKR_SECRET>%26",
2104
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832281", 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
+ - Tue, 31 Mar 2015 20:04:42 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
+ - www43.flickr.bf1.yahoo.com
2127
+ Vary:
2128
+ - Accept-Encoding
2129
+ Age:
2130
+ - '1'
2131
+ Via:
2132
+ - http/1.1 fts106.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2133
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:42 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="5PjNK5V1K%2B9Amff%2FgDJBpeGEGOVbaciEQ1gFnU684gE%3D", oauth_signature="<FLICKR_SECRET>%26",
2171
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832282", 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
+ - Tue, 31 Mar 2015 20:04:42 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
+ - www37.flickr.bf1.yahoo.com
2194
+ Vary:
2195
+ - Accept-Encoding
2196
+ Age:
2197
+ - '0'
2198
+ Via:
2199
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2200
+ http/1.1 r11.ycpi.ams.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: Tue, 31 Mar 2015 20:04:42 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="kw8JsTn6ZtF25HAnKKJNZ9Xy6vFiKYbci31dlUdc7Yg%3D", oauth_signature="<FLICKR_SECRET>%26",
2229
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427832282", 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
+ - Tue, 31 Mar 2015 20:04:42 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
+ - www14.flickr.bf1.yahoo.com
2252
+ Vary:
2253
+ - Accept-Encoding
2254
+ Age:
2255
+ - '0'
2256
+ Via:
2257
+ - http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
2258
+ http/1.1 r11.ycpi.ams.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"}'
2278
+ http_version:
2279
+ recorded_at: Tue, 31 Mar 2015 20:04:43 GMT
2280
+ recorded_with: VCR 2.9.3