purdie 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +17 -13
- data/Rakefile +6 -2
- data/features/comments.feature +2 -13
- data/features/duff-credentials.feature +2 -3
- data/features/flickr-album.feature +5 -0
- data/features/flickr-different-size.feature +1 -0
- data/features/flickr-with-lookups.feature +1 -0
- data/features/rfm.feature +5 -0
- data/features/select-file.feature +26 -24
- data/features/soundcloud-set.feature +2 -2
- data/features/support/fixtures/vcr.nope/A_URL_we_don_t_understand/Handle_a_URL_we_don_t_recognise.yml +125 -0
- data/features/support/fixtures/vcr.nope/First_contact_with_the_Real_World/Generate_YAML_for_the_Raw_Funk_Maharishi.yml +536 -0
- data/features/support/fixtures/vcr.nope/Flickr/Generate_Flickr_YAML.yml +131 -0
- data/features/support/fixtures/vcr.nope/Flickr/Generate_Flickr_YAML_with_lookups.yml +129 -0
- data/features/support/fixtures/vcr.nope/Flickr_album/Generate_Flickr_YAML_for_an_album.yml +2280 -0
- data/features/support/fixtures/vcr.nope/Handle_comments/Handle_comments_in_a_source_file.yml +131 -0
- data/features/support/fixtures/vcr.nope/Missing_or_bad_credentials/Bad_credentials_for_multiple_services.yml +156 -0
- data/features/support/fixtures/{vcr → vcr.nope}/Purdie/Generate_several_YAML.yml +0 -0
- data/features/support/fixtures/vcr.nope/Select_a_file_to_process/Choose_file_to_process.yml +220 -0
- data/features/support/fixtures/vcr.nope/Set_Flickr_picturesize/Generate_Flickr_YAML.yml +131 -0
- data/features/support/fixtures/{vcr/Select_a_file_to_process/Choose_file_to_process.yml → vcr.nope/Soundcloud/Generate_SoundCloud_YAML.yml} +4 -4
- data/features/support/fixtures/vcr.nope/Soundcloud/Generate_SoundCloud_YAML_for_multiple_tracks.yml +181 -0
- data/features/support/fixtures/vcr.nope/Soundcloud_set/Generate_YAML_for_a_SoundCloud_set.yml +461 -0
- data/features/support/fixtures/vcr.nope/Vimeo/Generate_Vimeo_YAML.yml +53 -0
- data/features/support/fixtures/vcr.nope/Vimeo_albums/Generate_YAML_for_a_Vimeo_album.yml +210 -0
- data/features/support/fixtures/vcr.nope/YouTube/Generate_YouTube_YAML.yml +970 -0
- data/features/support/fixtures/vcr.nope/YouTube_playlists/Generate_YAML_for_a_YouTube_playlist.yml +9688 -0
- data/features/support/fixtures/vcr/A_URL_we_don_t_understand/Handle_a_URL_we_don_t_recognise.yml +23 -17
- data/features/support/fixtures/vcr/First_contact_with_the_Real_World/Generate_YAML_for_the_Raw_Funk_Maharishi.yml +134 -57
- data/features/support/fixtures/vcr/Flickr/Generate_Flickr_YAML.yml +24 -18
- data/features/support/fixtures/vcr/Flickr/Generate_Flickr_YAML_with_lookups.yml +25 -19
- data/features/support/fixtures/vcr/Flickr_album/Generate_Flickr_YAML_for_an_album.yml +1438 -193
- data/features/support/fixtures/vcr/Handle_comments/Handle_comments_in_a_source_file.yml +23 -100
- data/features/support/fixtures/vcr/Missing_or_bad_credentials/Bad_credentials_for_multiple_services.yml +15 -15
- data/features/support/fixtures/vcr/Set_Flickr_picturesize/Generate_Flickr_YAML.yml +24 -18
- data/features/support/fixtures/vcr/Soundcloud/Generate_SoundCloud_YAML.yml +9 -8
- data/features/support/fixtures/vcr/Soundcloud/Generate_SoundCloud_YAML_for_multiple_tracks.yml +14 -14
- data/features/support/fixtures/vcr/Soundcloud_set/Generate_YAML_for_a_SoundCloud_set.yml +41 -40
- data/features/support/fixtures/vcr/Vimeo/Generate_Vimeo_YAML.yml +8 -8
- data/features/support/fixtures/vcr/Vimeo_albums/Generate_YAML_for_a_Vimeo_album.yml +38 -38
- data/features/support/fixtures/vcr/YouTube/Generate_YouTube_YAML.yml +873 -873
- data/features/support/fixtures/vcr/YouTube_playlists/Generate_YAML_for_a_YouTube_playlist.yml +9108 -1923
- data/features/support/hooks.rb +8 -0
- data/features/youtube-playlist.feature +0 -2
- data/lib/purdie.rb +2 -8
- data/lib/purdie/bernard.rb +7 -60
- data/lib/purdie/cli.rb +1 -1
- data/lib/purdie/config.rb +17 -8
- data/lib/purdie/helpers.rb +8 -0
- data/lib/purdie/ingester.rb +16 -16
- data/lib/purdie/item.rb +36 -0
- data/lib/purdie/resolver.rb +15 -0
- data/lib/purdie/services/soundcloud.rb +1 -1
- data/lib/purdie/source_list.rb +54 -16
- data/lib/purdie/version.rb +1 -1
- data/purdie.gemspec +19 -19
- data/spec/bernard_spec.rb +30 -0
- data/spec/config_spec.rb +4 -4
- data/spec/item_spec.rb +46 -0
- data/spec/resolver_spec.rb +40 -0
- data/spec/services/youtube_spec.rb +1 -1
- data/spec/source_list_spec.rb +59 -34
- data/spec/spec_helper.rb +1 -1
- data/spec/support/fixtures/output-generator +2 -0
- data/spec/support/fixtures/youtube.tubes +1 -0
- data/spec/vcr/Purdie_Bernard/deals_with_YouTube.yml +9686 -0
- data/spec/vcr/Purdie_Bernard/processes_files.yml +570 -0
- data/spec/vcr/Purdie_Item/populates_itself.yml +182 -0
- data/spec/vcr/Purdie_Resolver/resolves_a_Flickr_set.yml +772 -0
- data/spec/vcr/Purdie_Resolver/resolves_a_SoundCloud_set.yml +103 -0
- data/spec/vcr/Purdie_Resolver/resolves_a_YouTube_playlist.yml +970 -0
- data/spec/vcr/Purdie_SourceList/constructs_a_list_from_a_set_URL.yml +772 -0
- data/spec/vcr/Purdie_SourceList/make_output/actually_makes_output.yml +526 -0
- data/spec/vcr/Purdie_SourceList/process_its_items/processes_items.yml +210 -0
- data/spec/vcr/Purdie_SourceList/resolve_sets/constructs_a_list_from_a_set_URL.yml +95 -77
- metadata +78 -22
- data/features/flickr-alternative-outfile.feature +0 -29
- data/features/purdie.feature +0 -48
@@ -0,0 +1,182 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://api.soundcloud.com/resolve?client_id=<SOUNDCLOUD_CLIENT_ID>&format=json&url=https://soundcloud.com/rawfunkmaharishi/hexaflexagon-1
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- SoundCloud Ruby Wrapper 0.13.3
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 302
|
15
|
+
message: Found
|
16
|
+
headers:
|
17
|
+
Access-Control-Allow-Headers:
|
18
|
+
- Accept, Authorization, Content-Type, Origin
|
19
|
+
Access-Control-Allow-Methods:
|
20
|
+
- GET, PUT, POST, DELETE
|
21
|
+
Access-Control-Allow-Origin:
|
22
|
+
- "*"
|
23
|
+
Access-Control-Expose-Headers:
|
24
|
+
- Date
|
25
|
+
Cache-Control:
|
26
|
+
- no-cache
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Date:
|
30
|
+
- Tue, 31 Mar 2015 17:56:11 GMT
|
31
|
+
Location:
|
32
|
+
- https://api.soundcloud.com/tracks/193008299.json?client_id=<SOUNDCLOUD_CLIENT_ID>
|
33
|
+
Server:
|
34
|
+
- am/2
|
35
|
+
Content-Length:
|
36
|
+
- '129'
|
37
|
+
body:
|
38
|
+
encoding: UTF-8
|
39
|
+
string: '{"status":"302 - Found","location":"https://api.soundcloud.com/tracks/193008299.json?client_id=<SOUNDCLOUD_CLIENT_ID>"}'
|
40
|
+
http_version:
|
41
|
+
recorded_at: Tue, 31 Mar 2015 17:56:11 GMT
|
42
|
+
- request:
|
43
|
+
method: get
|
44
|
+
uri: https://api.soundcloud.com/tracks/193008299.json?client_id=<SOUNDCLOUD_CLIENT_ID>
|
45
|
+
body:
|
46
|
+
encoding: US-ASCII
|
47
|
+
string: ''
|
48
|
+
headers:
|
49
|
+
User-Agent:
|
50
|
+
- SoundCloud Ruby Wrapper 0.13.3
|
51
|
+
response:
|
52
|
+
status:
|
53
|
+
code: 200
|
54
|
+
message: OK
|
55
|
+
headers:
|
56
|
+
Accept-Ranges:
|
57
|
+
- bytes
|
58
|
+
Access-Control-Allow-Headers:
|
59
|
+
- Accept, Authorization, Content-Type, Origin
|
60
|
+
Access-Control-Allow-Methods:
|
61
|
+
- GET, PUT, POST, DELETE
|
62
|
+
Access-Control-Allow-Origin:
|
63
|
+
- "*"
|
64
|
+
Access-Control-Expose-Headers:
|
65
|
+
- Date
|
66
|
+
Cache-Control:
|
67
|
+
- max-age=600, public
|
68
|
+
Content-Type:
|
69
|
+
- application/json; charset=utf-8
|
70
|
+
Date:
|
71
|
+
- Tue, 31 Mar 2015 17:56:11 GMT
|
72
|
+
Etag:
|
73
|
+
- '"22a8481cd85e1e7be64128c639cc21b0"'
|
74
|
+
Last-Modified:
|
75
|
+
- Tue, 31 Mar 2015 16:20:04 GMT
|
76
|
+
Server:
|
77
|
+
- am/2
|
78
|
+
Vary:
|
79
|
+
- Accept-Encoding
|
80
|
+
- Authorization, Accept
|
81
|
+
X-Cache:
|
82
|
+
- HIT
|
83
|
+
Content-Length:
|
84
|
+
- '1555'
|
85
|
+
body:
|
86
|
+
encoding: UTF-8
|
87
|
+
string: '{"kind":"track","id":193008299,"created_at":"2015/02/25 19:24:51 +0000","user_id":56479293,"duration":209626,"commentable":true,"state":"finished","original_content_size":8436471,"last_modified":"2015/02/27
|
88
|
+
17:08:45 +0000","sharing":"public","tag_list":"\"islington academy sessions\"","permalink":"hexaflexagon-1","streamable":true,"embeddable_by":"all","downloadable":true,"purchase_url":null,"label_id":null,"purchase_title":null,"genre":"funk","title":"Hexaflexagon","description":"Islington
|
89
|
+
Academy","label_name":null,"release":null,"track_type":null,"key_signature":null,"isrc":null,"video_url":null,"bpm":null,"release_year":2015,"release_month":2,"release_day":18,"original_format":"mp3","license":"cc-by-nc-sa","uri":"https://api.soundcloud.com/tracks/193008299","user":{"id":56479293,"kind":"user","permalink":"rawfunkmaharishi","username":"Raw
|
90
|
+
Funk Maharishi","last_modified":"2015/03/23 09:26:53 +0000","uri":"https://api.soundcloud.com/users/56479293","permalink_url":"http://soundcloud.com/rawfunkmaharishi","avatar_url":"https://i1.sndcdn.com/avatars-000110957821-ac80gy-large.jpg"},"permalink_url":"http://soundcloud.com/rawfunkmaharishi/hexaflexagon-1","artwork_url":null,"waveform_url":"https://w1.sndcdn.com/CxyZz6RUbqZN_m.png","stream_url":"https://api.soundcloud.com/tracks/193008299/stream","download_url":"https://api.soundcloud.com/tracks/193008299/download","playback_count":59,"download_count":3,"favoritings_count":0,"comment_count":0,"attachments_uri":"https://api.soundcloud.com/tracks/193008299/attachments","policy":"ALLOW"}'
|
91
|
+
http_version:
|
92
|
+
recorded_at: Tue, 31 Mar 2015 17:56:11 GMT
|
93
|
+
- request:
|
94
|
+
method: get
|
95
|
+
uri: http://api.soundcloud.com/resolve?client_id=<SOUNDCLOUD_CLIENT_ID>&format=json&url=https://soundcloud.com/rawfunkmaharishi/hexaflexagon-1
|
96
|
+
body:
|
97
|
+
encoding: US-ASCII
|
98
|
+
string: ''
|
99
|
+
headers:
|
100
|
+
User-Agent:
|
101
|
+
- SoundCloud Ruby Wrapper 0.13.3
|
102
|
+
response:
|
103
|
+
status:
|
104
|
+
code: 302
|
105
|
+
message: Found
|
106
|
+
headers:
|
107
|
+
Access-Control-Allow-Headers:
|
108
|
+
- Accept, Authorization, Content-Type, Origin
|
109
|
+
Access-Control-Allow-Methods:
|
110
|
+
- GET, PUT, POST, DELETE
|
111
|
+
Access-Control-Allow-Origin:
|
112
|
+
- "*"
|
113
|
+
Access-Control-Expose-Headers:
|
114
|
+
- Date
|
115
|
+
Cache-Control:
|
116
|
+
- no-cache
|
117
|
+
Content-Type:
|
118
|
+
- application/json; charset=utf-8
|
119
|
+
Date:
|
120
|
+
- Tue, 31 Mar 2015 17:56:12 GMT
|
121
|
+
Location:
|
122
|
+
- https://api.soundcloud.com/tracks/193008299.json?client_id=<SOUNDCLOUD_CLIENT_ID>
|
123
|
+
Server:
|
124
|
+
- am/2
|
125
|
+
Content-Length:
|
126
|
+
- '129'
|
127
|
+
body:
|
128
|
+
encoding: UTF-8
|
129
|
+
string: '{"status":"302 - Found","location":"https://api.soundcloud.com/tracks/193008299.json?client_id=<SOUNDCLOUD_CLIENT_ID>"}'
|
130
|
+
http_version:
|
131
|
+
recorded_at: Tue, 31 Mar 2015 17:56:12 GMT
|
132
|
+
- request:
|
133
|
+
method: get
|
134
|
+
uri: https://api.soundcloud.com/tracks/193008299.json?client_id=<SOUNDCLOUD_CLIENT_ID>
|
135
|
+
body:
|
136
|
+
encoding: US-ASCII
|
137
|
+
string: ''
|
138
|
+
headers:
|
139
|
+
User-Agent:
|
140
|
+
- SoundCloud Ruby Wrapper 0.13.3
|
141
|
+
response:
|
142
|
+
status:
|
143
|
+
code: 200
|
144
|
+
message: OK
|
145
|
+
headers:
|
146
|
+
Accept-Ranges:
|
147
|
+
- bytes
|
148
|
+
Access-Control-Allow-Headers:
|
149
|
+
- Accept, Authorization, Content-Type, Origin
|
150
|
+
Access-Control-Allow-Methods:
|
151
|
+
- GET, PUT, POST, DELETE
|
152
|
+
Access-Control-Allow-Origin:
|
153
|
+
- "*"
|
154
|
+
Access-Control-Expose-Headers:
|
155
|
+
- Date
|
156
|
+
Cache-Control:
|
157
|
+
- max-age=600, public
|
158
|
+
Content-Type:
|
159
|
+
- application/json; charset=utf-8
|
160
|
+
Date:
|
161
|
+
- Tue, 31 Mar 2015 17:56:12 GMT
|
162
|
+
Etag:
|
163
|
+
- '"22a8481cd85e1e7be64128c639cc21b0"'
|
164
|
+
Last-Modified:
|
165
|
+
- Tue, 31 Mar 2015 16:20:04 GMT
|
166
|
+
Server:
|
167
|
+
- ECS (lhr/4BCD)
|
168
|
+
Vary:
|
169
|
+
- Accept-Encoding
|
170
|
+
X-Cache:
|
171
|
+
- HIT
|
172
|
+
Content-Length:
|
173
|
+
- '1555'
|
174
|
+
body:
|
175
|
+
encoding: UTF-8
|
176
|
+
string: '{"kind":"track","id":193008299,"created_at":"2015/02/25 19:24:51 +0000","user_id":56479293,"duration":209626,"commentable":true,"state":"finished","original_content_size":8436471,"last_modified":"2015/02/27
|
177
|
+
17:08:45 +0000","sharing":"public","tag_list":"\"islington academy sessions\"","permalink":"hexaflexagon-1","streamable":true,"embeddable_by":"all","downloadable":true,"purchase_url":null,"label_id":null,"purchase_title":null,"genre":"funk","title":"Hexaflexagon","description":"Islington
|
178
|
+
Academy","label_name":null,"release":null,"track_type":null,"key_signature":null,"isrc":null,"video_url":null,"bpm":null,"release_year":2015,"release_month":2,"release_day":18,"original_format":"mp3","license":"cc-by-nc-sa","uri":"https://api.soundcloud.com/tracks/193008299","user":{"id":56479293,"kind":"user","permalink":"rawfunkmaharishi","username":"Raw
|
179
|
+
Funk Maharishi","last_modified":"2015/03/23 09:26:53 +0000","uri":"https://api.soundcloud.com/users/56479293","permalink_url":"http://soundcloud.com/rawfunkmaharishi","avatar_url":"https://i1.sndcdn.com/avatars-000110957821-ac80gy-large.jpg"},"permalink_url":"http://soundcloud.com/rawfunkmaharishi/hexaflexagon-1","artwork_url":null,"waveform_url":"https://w1.sndcdn.com/CxyZz6RUbqZN_m.png","stream_url":"https://api.soundcloud.com/tracks/193008299/stream","download_url":"https://api.soundcloud.com/tracks/193008299/download","playback_count":59,"download_count":3,"favoritings_count":0,"comment_count":0,"attachments_uri":"https://api.soundcloud.com/tracks/193008299/attachments","policy":"ALLOW"}'
|
180
|
+
http_version:
|
181
|
+
recorded_at: Tue, 31 Mar 2015 17:56:12 GMT
|
182
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,772 @@
|
|
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="eHF3hq48NnhFu6040X95mowxzB%2FdRZMDtHT9HeJOTMk%3D", oauth_signature="<FLICKR_SECRET>%26",
|
19
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804919", 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 12:28:40 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
|
+
- www344.flickr.bf1.yahoo.com
|
42
|
+
Vary:
|
43
|
+
- Accept-Encoding
|
44
|
+
Age:
|
45
|
+
- '2'
|
46
|
+
Via:
|
47
|
+
- http/1.1 fts122.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
48
|
+
http/1.1 r13.ycpi.dea.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 12:28:40 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="UeQH4JPMRTpq%2Fn4Igns%2FWKMwseEPkmHEIk6exr51DeA%3D", oauth_signature="<FLICKR_SECRET>%26",
|
84
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804920", 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 12:28:40 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
|
+
- www265.flickr.bf1.yahoo.com
|
107
|
+
Vary:
|
108
|
+
- Accept-Encoding
|
109
|
+
Age:
|
110
|
+
- '0'
|
111
|
+
Via:
|
112
|
+
- http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
113
|
+
http/1.1 r03.ycpi.dea.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 12:28:40 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="uZO6n%2ByB7FX40RpiodjOuahqu6tzBBnz8NaN7uoR1RQ%3D", oauth_signature="<FLICKR_SECRET>%26",
|
143
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804920", 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 12:28:40 GMT
|
154
|
+
Content-Type:
|
155
|
+
- application/json
|
156
|
+
Content-Length:
|
157
|
+
- '543'
|
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
|
+
- www6.flickr.bf1.yahoo.com
|
166
|
+
Vary:
|
167
|
+
- Accept-Encoding
|
168
|
+
Age:
|
169
|
+
- '0'
|
170
|
+
Via:
|
171
|
+
- http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
172
|
+
http/1.1 r04.ycpi.dea.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":"178","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 12:28:40 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="x8waB0fxhrg6O%2F1tJYvnWVj1AuGnMSW%2BsVsC8M%2Fljek%3D", oauth_signature="<FLICKR_SECRET>%26",
|
201
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804921", 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 12:28:41 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
|
+
- www269.flickr.bf1.yahoo.com
|
224
|
+
Vary:
|
225
|
+
- Accept-Encoding
|
226
|
+
Age:
|
227
|
+
- '0'
|
228
|
+
Via:
|
229
|
+
- http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
230
|
+
http/1.1 r02.ycpi.dea.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":"106","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 12:28:41 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="voSWIE9tuGIkp5GLz1QtM2LamN5FZMEfMhF0g4itlrE%3D", oauth_signature="<FLICKR_SECRET>%26",
|
260
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804921", 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 12:28:41 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
|
+
- www39.flickr.bf1.yahoo.com
|
283
|
+
Vary:
|
284
|
+
- Accept-Encoding
|
285
|
+
Age:
|
286
|
+
- '0'
|
287
|
+
Via:
|
288
|
+
- http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
289
|
+
http/1.1 r07.ycpi.dea.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 12:28:41 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="ZO3Ne7s4DNEz8k0YB0XOfHmLL%2BAVRhL6PT%2Fuuf0E%2BQs%3D", oauth_signature="<FLICKR_SECRET>%26",
|
318
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804921", 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 12:28:42 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
|
+
- www323.flickr.bf1.yahoo.com
|
341
|
+
Vary:
|
342
|
+
- Accept-Encoding
|
343
|
+
Age:
|
344
|
+
- '0'
|
345
|
+
Via:
|
346
|
+
- http/1.1 fts120.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
347
|
+
http/1.1 r05.ycpi.dea.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 12:28:42 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="9k4H%2Fbj9UNKjBaP1wX6NcbUo%2BSfzlvTdXEhhGfIWSbA%3D", oauth_signature="<FLICKR_SECRET>%26",
|
377
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804922", 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 12:28:42 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
|
+
- www286.flickr.bf1.yahoo.com
|
400
|
+
Vary:
|
401
|
+
- Accept-Encoding
|
402
|
+
Age:
|
403
|
+
- '0'
|
404
|
+
Via:
|
405
|
+
- http/1.1 fts117.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
406
|
+
http/1.1 r01.ycpi.dea.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":"77","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 12:28:42 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="deF5Nhurj5w0NeSurQ2gDj%2BWpNWGwOJEStuJwmu9VLM%3D", oauth_signature="<FLICKR_SECRET>%26",
|
436
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804922", 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 12:28:42 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
|
+
- www282.flickr.bf1.yahoo.com
|
459
|
+
Vary:
|
460
|
+
- Accept-Encoding
|
461
|
+
Age:
|
462
|
+
- '0'
|
463
|
+
Via:
|
464
|
+
- http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
465
|
+
http/1.1 r22.ycpi.dea.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 12:28:42 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="4wR063%2B7rXAqMy3fgSe1%2FmprNxKntXb7YMx%2Bi%2Byf67A%3D", oauth_signature="<FLICKR_SECRET>%26",
|
494
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804922", 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 12:28:43 GMT
|
505
|
+
Content-Type:
|
506
|
+
- application/json
|
507
|
+
Content-Length:
|
508
|
+
- '603'
|
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
|
+
- www233.flickr.bf1.yahoo.com
|
517
|
+
Vary:
|
518
|
+
- Accept-Encoding
|
519
|
+
Age:
|
520
|
+
- '0'
|
521
|
+
Via:
|
522
|
+
- http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
523
|
+
http/1.1 r07.ycpi.dea.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":"63","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 12:28:43 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="Xb35%2FQOGqQMuUsHZr4pMGTOlNmATYDf060LLZ6yC71k%3D", oauth_signature="<FLICKR_SECRET>%26",
|
554
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804923", 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 12:28:43 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
|
+
- www226.flickr.bf1.yahoo.com
|
577
|
+
Vary:
|
578
|
+
- Accept-Encoding
|
579
|
+
Age:
|
580
|
+
- '0'
|
581
|
+
Via:
|
582
|
+
- http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
583
|
+
http/1.1 r03.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
|
584
|
+
Server:
|
585
|
+
- ATS
|
586
|
+
Strict-Transport-Security:
|
587
|
+
- max-age=259200
|
588
|
+
Connection:
|
589
|
+
- keep-alive
|
590
|
+
body:
|
591
|
+
encoding: ASCII-8BIT
|
592
|
+
string: '{"photo":{"id":"16781381829","secret":"5350c41a12","server":"8717","farm":9,"dateuploaded":"1427644206","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"2ba6bcdc36","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
|
593
|
+
pots"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427644206","taken":"2015-03-29
|
594
|
+
16:46:33","takengranularity":"0","takenunknown":"0","lastupdate":"1427644512"},"views":"32","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16781381829\/"}]},"media":"photo"},"stat":"ok"}'
|
595
|
+
http_version:
|
596
|
+
recorded_at: Tue, 31 Mar 2015 12:28:43 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="mKfMvd6T7zyzfQvKLx4xscY72JE2Svl1oUJCDNmNFoE%3D", oauth_signature="<FLICKR_SECRET>%26",
|
613
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804923", 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 12:28:43 GMT
|
624
|
+
Content-Type:
|
625
|
+
- application/json
|
626
|
+
Content-Length:
|
627
|
+
- '544'
|
628
|
+
P3p:
|
629
|
+
- policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
|
630
|
+
TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
|
631
|
+
ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
|
632
|
+
Cache-Control:
|
633
|
+
- private
|
634
|
+
X-Served-By:
|
635
|
+
- www43.flickr.bf1.yahoo.com
|
636
|
+
Vary:
|
637
|
+
- Accept-Encoding
|
638
|
+
Age:
|
639
|
+
- '2'
|
640
|
+
Via:
|
641
|
+
- http/1.1 fts103.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
642
|
+
http/1.1 r08.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
|
643
|
+
Server:
|
644
|
+
- ATS
|
645
|
+
Strict-Transport-Security:
|
646
|
+
- max-age=259200
|
647
|
+
Connection:
|
648
|
+
- keep-alive
|
649
|
+
body:
|
650
|
+
encoding: ASCII-8BIT
|
651
|
+
string: '{"photo":{"id":"16794930739","secret":"437b5cf887","server":"8733","farm":9,"dateuploaded":"1427740028","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"10281acd66","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
|
652
|
+
pots"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1427740028","taken":"2015-03-29
|
653
|
+
16:46:48","takengranularity":"0","takenunknown":"0","lastupdate":"1427740128"},"views":"27","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 12:28:44 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="3J7LuD6ztgpzHjQKsvpHeElV7RccEoamthaCz9SeYS8%3D", oauth_signature="<FLICKR_SECRET>%26",
|
672
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804924", 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 12:28:44 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
|
+
- www12.flickr.bf1.yahoo.com
|
695
|
+
Vary:
|
696
|
+
- Accept-Encoding
|
697
|
+
Age:
|
698
|
+
- '0'
|
699
|
+
Via:
|
700
|
+
- http/1.1 fts110.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
701
|
+
http/1.1 r12.ycpi.dea.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":"29","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16979820102\/"}]},"media":"photo"},"stat":"ok"}'
|
712
|
+
http_version:
|
713
|
+
recorded_at: Tue, 31 Mar 2015 12:28:44 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="F5Enizt0WrvA6Q84wELndhT6l9zejfXxqzm6hSY7wjs%3D", oauth_signature="<FLICKR_SECRET>%26",
|
730
|
+
oauth_signature_method="PLAINTEXT", oauth_timestamp="1427804924", 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 12:28:44 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
|
+
- www342.flickr.bf1.yahoo.com
|
753
|
+
Vary:
|
754
|
+
- Accept-Encoding
|
755
|
+
Age:
|
756
|
+
- '0'
|
757
|
+
Via:
|
758
|
+
- http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
|
759
|
+
http/1.1 r13.ycpi.dea.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":"13","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 12:28:44 GMT
|
772
|
+
recorded_with: VCR 2.9.3
|