purdie 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +17 -13
  3. data/Rakefile +6 -2
  4. data/features/comments.feature +2 -13
  5. data/features/duff-credentials.feature +2 -3
  6. data/features/flickr-album.feature +5 -0
  7. data/features/flickr-different-size.feature +1 -0
  8. data/features/flickr-with-lookups.feature +1 -0
  9. data/features/rfm.feature +5 -0
  10. data/features/select-file.feature +26 -24
  11. data/features/soundcloud-set.feature +2 -2
  12. data/features/support/fixtures/vcr.nope/A_URL_we_don_t_understand/Handle_a_URL_we_don_t_recognise.yml +125 -0
  13. data/features/support/fixtures/vcr.nope/First_contact_with_the_Real_World/Generate_YAML_for_the_Raw_Funk_Maharishi.yml +536 -0
  14. data/features/support/fixtures/vcr.nope/Flickr/Generate_Flickr_YAML.yml +131 -0
  15. data/features/support/fixtures/vcr.nope/Flickr/Generate_Flickr_YAML_with_lookups.yml +129 -0
  16. data/features/support/fixtures/vcr.nope/Flickr_album/Generate_Flickr_YAML_for_an_album.yml +2280 -0
  17. data/features/support/fixtures/vcr.nope/Handle_comments/Handle_comments_in_a_source_file.yml +131 -0
  18. data/features/support/fixtures/vcr.nope/Missing_or_bad_credentials/Bad_credentials_for_multiple_services.yml +156 -0
  19. data/features/support/fixtures/{vcr → vcr.nope}/Purdie/Generate_several_YAML.yml +0 -0
  20. data/features/support/fixtures/vcr.nope/Select_a_file_to_process/Choose_file_to_process.yml +220 -0
  21. data/features/support/fixtures/vcr.nope/Set_Flickr_picturesize/Generate_Flickr_YAML.yml +131 -0
  22. data/features/support/fixtures/{vcr/Select_a_file_to_process/Choose_file_to_process.yml → vcr.nope/Soundcloud/Generate_SoundCloud_YAML.yml} +4 -4
  23. data/features/support/fixtures/vcr.nope/Soundcloud/Generate_SoundCloud_YAML_for_multiple_tracks.yml +181 -0
  24. data/features/support/fixtures/vcr.nope/Soundcloud_set/Generate_YAML_for_a_SoundCloud_set.yml +461 -0
  25. data/features/support/fixtures/vcr.nope/Vimeo/Generate_Vimeo_YAML.yml +53 -0
  26. data/features/support/fixtures/vcr.nope/Vimeo_albums/Generate_YAML_for_a_Vimeo_album.yml +210 -0
  27. data/features/support/fixtures/vcr.nope/YouTube/Generate_YouTube_YAML.yml +970 -0
  28. data/features/support/fixtures/vcr.nope/YouTube_playlists/Generate_YAML_for_a_YouTube_playlist.yml +9688 -0
  29. data/features/support/fixtures/vcr/A_URL_we_don_t_understand/Handle_a_URL_we_don_t_recognise.yml +23 -17
  30. data/features/support/fixtures/vcr/First_contact_with_the_Real_World/Generate_YAML_for_the_Raw_Funk_Maharishi.yml +134 -57
  31. data/features/support/fixtures/vcr/Flickr/Generate_Flickr_YAML.yml +24 -18
  32. data/features/support/fixtures/vcr/Flickr/Generate_Flickr_YAML_with_lookups.yml +25 -19
  33. data/features/support/fixtures/vcr/Flickr_album/Generate_Flickr_YAML_for_an_album.yml +1438 -193
  34. data/features/support/fixtures/vcr/Handle_comments/Handle_comments_in_a_source_file.yml +23 -100
  35. data/features/support/fixtures/vcr/Missing_or_bad_credentials/Bad_credentials_for_multiple_services.yml +15 -15
  36. data/features/support/fixtures/vcr/Set_Flickr_picturesize/Generate_Flickr_YAML.yml +24 -18
  37. data/features/support/fixtures/vcr/Soundcloud/Generate_SoundCloud_YAML.yml +9 -8
  38. data/features/support/fixtures/vcr/Soundcloud/Generate_SoundCloud_YAML_for_multiple_tracks.yml +14 -14
  39. data/features/support/fixtures/vcr/Soundcloud_set/Generate_YAML_for_a_SoundCloud_set.yml +41 -40
  40. data/features/support/fixtures/vcr/Vimeo/Generate_Vimeo_YAML.yml +8 -8
  41. data/features/support/fixtures/vcr/Vimeo_albums/Generate_YAML_for_a_Vimeo_album.yml +38 -38
  42. data/features/support/fixtures/vcr/YouTube/Generate_YouTube_YAML.yml +873 -873
  43. data/features/support/fixtures/vcr/YouTube_playlists/Generate_YAML_for_a_YouTube_playlist.yml +9108 -1923
  44. data/features/support/hooks.rb +8 -0
  45. data/features/youtube-playlist.feature +0 -2
  46. data/lib/purdie.rb +2 -8
  47. data/lib/purdie/bernard.rb +7 -60
  48. data/lib/purdie/cli.rb +1 -1
  49. data/lib/purdie/config.rb +17 -8
  50. data/lib/purdie/helpers.rb +8 -0
  51. data/lib/purdie/ingester.rb +16 -16
  52. data/lib/purdie/item.rb +36 -0
  53. data/lib/purdie/resolver.rb +15 -0
  54. data/lib/purdie/services/soundcloud.rb +1 -1
  55. data/lib/purdie/source_list.rb +54 -16
  56. data/lib/purdie/version.rb +1 -1
  57. data/purdie.gemspec +19 -19
  58. data/spec/bernard_spec.rb +30 -0
  59. data/spec/config_spec.rb +4 -4
  60. data/spec/item_spec.rb +46 -0
  61. data/spec/resolver_spec.rb +40 -0
  62. data/spec/services/youtube_spec.rb +1 -1
  63. data/spec/source_list_spec.rb +59 -34
  64. data/spec/spec_helper.rb +1 -1
  65. data/spec/support/fixtures/output-generator +2 -0
  66. data/spec/support/fixtures/youtube.tubes +1 -0
  67. data/spec/vcr/Purdie_Bernard/deals_with_YouTube.yml +9686 -0
  68. data/spec/vcr/Purdie_Bernard/processes_files.yml +570 -0
  69. data/spec/vcr/Purdie_Item/populates_itself.yml +182 -0
  70. data/spec/vcr/Purdie_Resolver/resolves_a_Flickr_set.yml +772 -0
  71. data/spec/vcr/Purdie_Resolver/resolves_a_SoundCloud_set.yml +103 -0
  72. data/spec/vcr/Purdie_Resolver/resolves_a_YouTube_playlist.yml +970 -0
  73. data/spec/vcr/Purdie_SourceList/constructs_a_list_from_a_set_URL.yml +772 -0
  74. data/spec/vcr/Purdie_SourceList/make_output/actually_makes_output.yml +526 -0
  75. data/spec/vcr/Purdie_SourceList/process_its_items/processes_items.yml +210 -0
  76. data/spec/vcr/Purdie_SourceList/resolve_sets/constructs_a_list_from_a_set_URL.yml +95 -77
  77. metadata +78 -22
  78. data/features/flickr-alternative-outfile.feature +0 -29
  79. data/features/purdie.feature +0 -48
@@ -0,0 +1,210 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.vimeo.com/albums/3296736/videos/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Authorization:
11
+ - bearer <VIMEO_BEARER_TOKEN>
12
+ Accept:
13
+ - application/json
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Date:
20
+ - Tue, 24 Mar 2015 16:42:46 GMT
21
+ Server:
22
+ - nginx
23
+ Content-Type:
24
+ - application/vnd.vimeo.video+json
25
+ Cache-Control:
26
+ - no-cache, max-age=315360000
27
+ Expires:
28
+ - Fri, 21 Mar 2025 16:42:45 GMT
29
+ Content-Length:
30
+ - '11559'
31
+ Accept-Ranges:
32
+ - bytes
33
+ Via:
34
+ - 1.1 varnish
35
+ Age:
36
+ - '0'
37
+ X-Served-By:
38
+ - cache-fra1230-FRA
39
+ X-Cache:
40
+ - MISS
41
+ X-Cache-Hits:
42
+ - '0'
43
+ X-Timer:
44
+ - S1427215365.871475,VS0,VE291
45
+ Vary:
46
+ - Accept,Vimeo-Client-Id,Accept-Encoding
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"total":3,"page":1,"per_page":25,"paging":{"next":null,"previous":null,"first":"/albums/3296736/videos/?page=1","last":"/albums/3296736/videos/?page=1"},"data":[{"uri":"/videos/111356018","name":"Safety
50
+ On Board","description":null,"link":"https://vimeo.com/rawfunkmaharishi/safetyonboard","duration":186,"width":1280,"language":"en-GB","height":720,"created_time":"2014-11-09T20:14:25+00:00","modified_time":"2015-03-23T22:09:01+00:00","content_rating":["safe"],"license":"by-nc-sa","privacy":{"view":"anybody","embed":"public","download":true,"add":true,"comments":"anybody"},"pictures":{"uri":"/videos/111356018/pictures/496005415","active":true,"sizes":[{"width":100,"height":75,"link":"https://i.vimeocdn.com/video/496005415_100x75.jpg"},{"width":200,"height":150,"link":"https://i.vimeocdn.com/video/496005415_200x150.jpg"},{"width":295,"height":166,"link":"https://i.vimeocdn.com/video/496005415_295x166.jpg"},{"width":640,"height":360,"link":"https://i.vimeocdn.com/video/496005415_640x360.jpg"},{"width":960,"height":540,"link":"https://i.vimeocdn.com/video/496005415_960x540.jpg"},{"width":1280,"height":720,"link":"https://i.vimeocdn.com/video/496005415_1280x720.jpg"}]},"tags":[{"uri":"/tags/musicsnakerawfunkmaharishi","name":"music
51
+ snake rawfunkmaharishi","tag":"music snake rawfunkmaharishi","canonical":"musicsnakerawfunkmaharishi","metadata":{"connections":{"videos":{"uri":"/tags/musicsnakerawfunkmaharishi/videos","options":["GET"],"total":1}}}}],"stats":{"plays":33},"metadata":{"connections":{"comments":{"uri":"/videos/111356018/comments","options":["GET","POST"],"total":0},"credits":{"uri":"/videos/111356018/credits","options":["GET","POST"],"total":1},"likes":{"uri":"/videos/111356018/likes","options":["GET"],"total":0},"pictures":{"uri":"/videos/111356018/pictures","options":["GET","POST"],"total":4},"texttracks":{"uri":"/videos/111356018/texttracks","options":["GET","POST"],"total":0}},"interactions":{"watchlater":{"added":false,"added_time":null,"uri":"/users/33772623/watchlater/111356018"}}},"user":{"uri":"/users/33772623","name":"Raw
52
+ Funk Maharishi","link":"https://vimeo.com/rawfunkmaharishi","location":null,"bio":null,"created_time":"2014-10-27T12:06:25+00:00","account":"basic","pictures":{"uri":"/users/33772623/pictures/8588995","active":true,"sizes":[{"width":30,"height":30,"link":"https://i.vimeocdn.com/portrait/8588995_30x30.jpg"},{"width":75,"height":75,"link":"https://i.vimeocdn.com/portrait/8588995_75x75.jpg"},{"width":100,"height":100,"link":"https://i.vimeocdn.com/portrait/8588995_100x100.jpg"},{"width":300,"height":300,"link":"https://i.vimeocdn.com/portrait/8588995_300x300.jpg"}]},"websites":[{"name":"http://rawfunkmaharishi.uk/","link":"http://rawfunkmaharishi.uk/","description":null}],"metadata":{"connections":{"activities":{"uri":"/users/33772623/activities","options":["GET"]},"albums":{"uri":"/users/33772623/albums","options":["GET"],"total":1},"channels":{"uri":"/users/33772623/channels","options":["GET"],"total":0},"feed":{"uri":"/users/33772623/feed","options":["GET"]},"followers":{"uri":"/users/33772623/followers","options":["GET"],"total":0},"following":{"uri":"/users/33772623/following","options":["GET"],"total":0},"groups":{"uri":"/users/33772623/groups","options":["GET"],"total":0},"likes":{"uri":"/users/33772623/likes","options":["GET"],"total":0},"portfolios":{"uri":"/users/33772623/portfolios","options":["GET"],"total":0},"videos":{"uri":"/users/33772623/videos","options":["GET"],"total":4},"watchlater":{"uri":"/users/33772623/watchlater","options":["GET"],"total":0},"shared":{"uri":"/users/33772623/shared/videos","options":["GET"],"total":0},"pictures":{"uri":"/users/33772623/pictures","options":["GET","POST"],"total":1}}},"content_filter":["language","drugs","violence","nudity","safe","unrated"]},"embed":{"uri":null,"buttons":{"like":true,"watchlater":true,"share":true,"embed":true,"hd":false,"fullscreen":true,"scaling":true},"logos":{"vimeo":true,"custom":{"active":false,"link":null,"sticky":false}},"title":{"name":"user","owner":"user","portrait":"user"},"playbar":true,"volume":true,"color":"00adef"},"app":null,"status":"available","embed_presets":null},{"uri":"/videos/110133117","name":"Trapped
53
+ In Hawaii","description":null,"link":"https://vimeo.com/rawfunkmaharishi/trappedinhawaii","duration":227,"width":1280,"language":null,"height":720,"created_time":"2014-10-27T12:17:08+00:00","modified_time":"2015-03-23T22:09:01+00:00","content_rating":["unrated"],"license":"by-nc-sa","privacy":{"view":"anybody","embed":"public","download":true,"add":true,"comments":"anybody"},"pictures":{"uri":"/videos/110133117/pictures/494272000","active":true,"sizes":[{"width":100,"height":75,"link":"https://i.vimeocdn.com/video/494272000_100x75.jpg"},{"width":200,"height":150,"link":"https://i.vimeocdn.com/video/494272000_200x150.jpg"},{"width":295,"height":166,"link":"https://i.vimeocdn.com/video/494272000_295x166.jpg"},{"width":640,"height":360,"link":"https://i.vimeocdn.com/video/494272000_640x360.jpg"},{"width":960,"height":540,"link":"https://i.vimeocdn.com/video/494272000_960x540.jpg"},{"width":1280,"height":720,"link":"https://i.vimeocdn.com/video/494272000_1280x720.jpg"}]},"tags":[],"stats":{"plays":14},"metadata":{"connections":{"comments":{"uri":"/videos/110133117/comments","options":["GET","POST"],"total":0},"credits":{"uri":"/videos/110133117/credits","options":["GET","POST"],"total":1},"likes":{"uri":"/videos/110133117/likes","options":["GET"],"total":0},"pictures":{"uri":"/videos/110133117/pictures","options":["GET","POST"],"total":1},"texttracks":{"uri":"/videos/110133117/texttracks","options":["GET","POST"],"total":0}},"interactions":{"watchlater":{"added":false,"added_time":null,"uri":"/users/33772623/watchlater/110133117"}}},"user":{"uri":"/users/33772623","name":"Raw
54
+ Funk Maharishi","link":"https://vimeo.com/rawfunkmaharishi","location":null,"bio":null,"created_time":"2014-10-27T12:06:25+00:00","account":"basic","pictures":{"uri":"/users/33772623/pictures/8588995","active":true,"sizes":[{"width":30,"height":30,"link":"https://i.vimeocdn.com/portrait/8588995_30x30.jpg"},{"width":75,"height":75,"link":"https://i.vimeocdn.com/portrait/8588995_75x75.jpg"},{"width":100,"height":100,"link":"https://i.vimeocdn.com/portrait/8588995_100x100.jpg"},{"width":300,"height":300,"link":"https://i.vimeocdn.com/portrait/8588995_300x300.jpg"}]},"websites":[{"name":"http://rawfunkmaharishi.uk/","link":"http://rawfunkmaharishi.uk/","description":null}],"metadata":{"connections":{"activities":{"uri":"/users/33772623/activities","options":["GET"]},"albums":{"uri":"/users/33772623/albums","options":["GET"],"total":1},"channels":{"uri":"/users/33772623/channels","options":["GET"],"total":0},"feed":{"uri":"/users/33772623/feed","options":["GET"]},"followers":{"uri":"/users/33772623/followers","options":["GET"],"total":0},"following":{"uri":"/users/33772623/following","options":["GET"],"total":0},"groups":{"uri":"/users/33772623/groups","options":["GET"],"total":0},"likes":{"uri":"/users/33772623/likes","options":["GET"],"total":0},"portfolios":{"uri":"/users/33772623/portfolios","options":["GET"],"total":0},"videos":{"uri":"/users/33772623/videos","options":["GET"],"total":4},"watchlater":{"uri":"/users/33772623/watchlater","options":["GET"],"total":0},"shared":{"uri":"/users/33772623/shared/videos","options":["GET"],"total":0},"pictures":{"uri":"/users/33772623/pictures","options":["GET","POST"],"total":1}}},"content_filter":["language","drugs","violence","nudity","safe","unrated"]},"embed":{"uri":null,"buttons":{"like":true,"watchlater":true,"share":true,"embed":true,"hd":false,"fullscreen":true,"scaling":true},"logos":{"vimeo":true,"custom":{"active":false,"link":null,"sticky":false}},"title":{"name":"user","owner":"user","portrait":"user"},"playbar":true,"volume":true,"color":"00adef"},"app":null,"status":"available","embed_presets":null},{"uri":"/videos/110132671","name":"Discotheque
55
+ Metamorphosis","description":null,"link":"https://vimeo.com/rawfunkmaharishi/discotheque-metamorphosis","duration":218,"width":640,"language":null,"height":360,"created_time":"2014-10-27T12:10:13+00:00","modified_time":"2015-03-23T22:08:53+00:00","content_rating":["unrated"],"license":"by-nc-sa","privacy":{"view":"anybody","embed":"public","download":true,"add":true,"comments":"anybody"},"pictures":{"uri":"/videos/110132671/pictures/494269097","active":true,"sizes":[{"width":100,"height":75,"link":"https://i.vimeocdn.com/video/494269097_100x75.jpg"},{"width":200,"height":150,"link":"https://i.vimeocdn.com/video/494269097_200x150.jpg"},{"width":295,"height":166,"link":"https://i.vimeocdn.com/video/494269097_295x166.jpg"},{"width":640,"height":360,"link":"https://i.vimeocdn.com/video/494269097_640x360.jpg"},{"width":960,"height":540,"link":"https://i.vimeocdn.com/video/494269097_960x540.jpg"}]},"tags":[],"stats":{"plays":9},"metadata":{"connections":{"comments":{"uri":"/videos/110132671/comments","options":["GET","POST"],"total":0},"credits":{"uri":"/videos/110132671/credits","options":["GET","POST"],"total":1},"likes":{"uri":"/videos/110132671/likes","options":["GET"],"total":0},"pictures":{"uri":"/videos/110132671/pictures","options":["GET","POST"],"total":1},"texttracks":{"uri":"/videos/110132671/texttracks","options":["GET","POST"],"total":0}},"interactions":{"watchlater":{"added":false,"added_time":null,"uri":"/users/33772623/watchlater/110132671"}}},"user":{"uri":"/users/33772623","name":"Raw
56
+ Funk Maharishi","link":"https://vimeo.com/rawfunkmaharishi","location":null,"bio":null,"created_time":"2014-10-27T12:06:25+00:00","account":"basic","pictures":{"uri":"/users/33772623/pictures/8588995","active":true,"sizes":[{"width":30,"height":30,"link":"https://i.vimeocdn.com/portrait/8588995_30x30.jpg"},{"width":75,"height":75,"link":"https://i.vimeocdn.com/portrait/8588995_75x75.jpg"},{"width":100,"height":100,"link":"https://i.vimeocdn.com/portrait/8588995_100x100.jpg"},{"width":300,"height":300,"link":"https://i.vimeocdn.com/portrait/8588995_300x300.jpg"}]},"websites":[{"name":"http://rawfunkmaharishi.uk/","link":"http://rawfunkmaharishi.uk/","description":null}],"metadata":{"connections":{"activities":{"uri":"/users/33772623/activities","options":["GET"]},"albums":{"uri":"/users/33772623/albums","options":["GET"],"total":1},"channels":{"uri":"/users/33772623/channels","options":["GET"],"total":0},"feed":{"uri":"/users/33772623/feed","options":["GET"]},"followers":{"uri":"/users/33772623/followers","options":["GET"],"total":0},"following":{"uri":"/users/33772623/following","options":["GET"],"total":0},"groups":{"uri":"/users/33772623/groups","options":["GET"],"total":0},"likes":{"uri":"/users/33772623/likes","options":["GET"],"total":0},"portfolios":{"uri":"/users/33772623/portfolios","options":["GET"],"total":0},"videos":{"uri":"/users/33772623/videos","options":["GET"],"total":4},"watchlater":{"uri":"/users/33772623/watchlater","options":["GET"],"total":0},"shared":{"uri":"/users/33772623/shared/videos","options":["GET"],"total":0},"pictures":{"uri":"/users/33772623/pictures","options":["GET","POST"],"total":1}}},"content_filter":["language","drugs","violence","nudity","safe","unrated"]},"embed":{"uri":null,"buttons":{"like":true,"watchlater":true,"share":true,"embed":true,"hd":false,"fullscreen":true,"scaling":true},"logos":{"vimeo":true,"custom":{"active":false,"link":null,"sticky":false}},"title":{"name":"user","owner":"user","portrait":"user"},"playbar":true,"volume":true,"color":"00adef"},"app":null,"status":"available","embed_presets":null}]}'
57
+ http_version:
58
+ recorded_at: Tue, 24 Mar 2015 16:42:46 GMT
59
+ - request:
60
+ method: get
61
+ uri: https://api.vimeo.com/videos/111356018
62
+ body:
63
+ encoding: US-ASCII
64
+ string: ''
65
+ headers:
66
+ Authorization:
67
+ - bearer <VIMEO_BEARER_TOKEN>
68
+ Accept:
69
+ - application/json
70
+ response:
71
+ status:
72
+ code: 200
73
+ message: OK
74
+ headers:
75
+ Date:
76
+ - Tue, 24 Mar 2015 16:42:46 GMT
77
+ Server:
78
+ - nginx
79
+ Content-Type:
80
+ - application/vnd.vimeo.video+json
81
+ Cache-Control:
82
+ - no-cache, max-age=315360000
83
+ Expires:
84
+ - Fri, 21 Mar 2025 16:42:46 GMT
85
+ Content-Length:
86
+ - '4002'
87
+ Accept-Ranges:
88
+ - bytes
89
+ Via:
90
+ - 1.1 varnish
91
+ Age:
92
+ - '0'
93
+ X-Served-By:
94
+ - cache-fra1220-FRA
95
+ X-Cache:
96
+ - MISS
97
+ X-Cache-Hits:
98
+ - '0'
99
+ X-Timer:
100
+ - S1427215366.301754,VS0,VE235
101
+ Vary:
102
+ - Accept,Vimeo-Client-Id,Accept-Encoding
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"uri":"/videos/111356018","name":"Safety On Board","description":null,"link":"https://vimeo.com/rawfunkmaharishi/safetyonboard","duration":186,"width":1280,"language":"en-GB","height":720,"created_time":"2014-11-09T20:14:25+00:00","modified_time":"2015-03-23T22:09:01+00:00","content_rating":["safe"],"license":"by-nc-sa","privacy":{"view":"anybody","embed":"public","download":true,"add":true,"comments":"anybody"},"pictures":{"uri":"/videos/111356018/pictures/496005415","active":true,"sizes":[{"width":100,"height":75,"link":"https://i.vimeocdn.com/video/496005415_100x75.jpg"},{"width":200,"height":150,"link":"https://i.vimeocdn.com/video/496005415_200x150.jpg"},{"width":295,"height":166,"link":"https://i.vimeocdn.com/video/496005415_295x166.jpg"},{"width":640,"height":360,"link":"https://i.vimeocdn.com/video/496005415_640x360.jpg"},{"width":960,"height":540,"link":"https://i.vimeocdn.com/video/496005415_960x540.jpg"},{"width":1280,"height":720,"link":"https://i.vimeocdn.com/video/496005415_1280x720.jpg"}]},"tags":[{"uri":"/tags/musicsnakerawfunkmaharishi","name":"music
106
+ snake rawfunkmaharishi","tag":"music snake rawfunkmaharishi","canonical":"musicsnakerawfunkmaharishi","metadata":{"connections":{"videos":{"uri":"/tags/musicsnakerawfunkmaharishi/videos","options":["GET"],"total":1}}}}],"stats":{"plays":33},"metadata":{"connections":{"comments":{"uri":"/videos/111356018/comments","options":["GET","POST"],"total":0},"credits":{"uri":"/videos/111356018/credits","options":["GET","POST"],"total":1},"likes":{"uri":"/videos/111356018/likes","options":["GET"],"total":0},"pictures":{"uri":"/videos/111356018/pictures","options":["GET","POST"],"total":4},"texttracks":{"uri":"/videos/111356018/texttracks","options":["GET","POST"],"total":0}},"interactions":{"watchlater":{"added":false,"added_time":null,"uri":"/users/33772623/watchlater/111356018"}}},"user":{"uri":"/users/33772623","name":"Raw
107
+ Funk Maharishi","link":"https://vimeo.com/rawfunkmaharishi","location":null,"bio":null,"created_time":"2014-10-27T12:06:25+00:00","account":"basic","pictures":{"uri":"/users/33772623/pictures/8588995","active":true,"sizes":[{"width":30,"height":30,"link":"https://i.vimeocdn.com/portrait/8588995_30x30.jpg"},{"width":75,"height":75,"link":"https://i.vimeocdn.com/portrait/8588995_75x75.jpg"},{"width":100,"height":100,"link":"https://i.vimeocdn.com/portrait/8588995_100x100.jpg"},{"width":300,"height":300,"link":"https://i.vimeocdn.com/portrait/8588995_300x300.jpg"}]},"websites":[{"name":"http://rawfunkmaharishi.uk/","link":"http://rawfunkmaharishi.uk/","description":null}],"metadata":{"connections":{"activities":{"uri":"/users/33772623/activities","options":["GET"]},"albums":{"uri":"/users/33772623/albums","options":["GET"],"total":1},"channels":{"uri":"/users/33772623/channels","options":["GET"],"total":0},"feed":{"uri":"/users/33772623/feed","options":["GET"]},"followers":{"uri":"/users/33772623/followers","options":["GET"],"total":0},"following":{"uri":"/users/33772623/following","options":["GET"],"total":0},"groups":{"uri":"/users/33772623/groups","options":["GET"],"total":0},"likes":{"uri":"/users/33772623/likes","options":["GET"],"total":0},"portfolios":{"uri":"/users/33772623/portfolios","options":["GET"],"total":0},"videos":{"uri":"/users/33772623/videos","options":["GET"],"total":4},"watchlater":{"uri":"/users/33772623/watchlater","options":["GET"],"total":0},"shared":{"uri":"/users/33772623/shared/videos","options":["GET"],"total":0},"pictures":{"uri":"/users/33772623/pictures","options":["GET","POST"],"total":1}}},"content_filter":["language","drugs","violence","nudity","safe","unrated"]},"embed":{"uri":null,"buttons":{"like":true,"watchlater":true,"share":true,"embed":true,"hd":false,"fullscreen":true,"scaling":true},"logos":{"vimeo":true,"custom":{"active":false,"link":null,"sticky":false}},"title":{"name":"user","owner":"user","portrait":"user"},"playbar":true,"volume":true,"color":"00adef"},"app":null,"status":"available","embed_presets":null}'
108
+ http_version:
109
+ recorded_at: Tue, 24 Mar 2015 16:42:46 GMT
110
+ - request:
111
+ method: get
112
+ uri: https://api.vimeo.com/videos/110133117
113
+ body:
114
+ encoding: US-ASCII
115
+ string: ''
116
+ headers:
117
+ Authorization:
118
+ - bearer <VIMEO_BEARER_TOKEN>
119
+ Accept:
120
+ - application/json
121
+ response:
122
+ status:
123
+ code: 200
124
+ message: OK
125
+ headers:
126
+ Date:
127
+ - Tue, 24 Mar 2015 16:42:46 GMT
128
+ Server:
129
+ - nginx
130
+ Content-Type:
131
+ - application/vnd.vimeo.video+json
132
+ Cache-Control:
133
+ - no-cache, max-age=315360000
134
+ Expires:
135
+ - Fri, 21 Mar 2025 16:42:46 GMT
136
+ Content-Length:
137
+ - '3732'
138
+ Accept-Ranges:
139
+ - bytes
140
+ Via:
141
+ - 1.1 varnish
142
+ Age:
143
+ - '0'
144
+ X-Served-By:
145
+ - cache-fra1236-FRA
146
+ X-Cache:
147
+ - MISS
148
+ X-Cache-Hits:
149
+ - '0'
150
+ X-Timer:
151
+ - S1427215366.679552,VS0,VE231
152
+ Vary:
153
+ - Accept,Vimeo-Client-Id,Accept-Encoding
154
+ body:
155
+ encoding: UTF-8
156
+ string: '{"uri":"/videos/110133117","name":"Trapped In Hawaii","description":null,"link":"https://vimeo.com/rawfunkmaharishi/trappedinhawaii","duration":227,"width":1280,"language":null,"height":720,"created_time":"2014-10-27T12:17:08+00:00","modified_time":"2015-03-23T22:09:01+00:00","content_rating":["unrated"],"license":"by-nc-sa","privacy":{"view":"anybody","embed":"public","download":true,"add":true,"comments":"anybody"},"pictures":{"uri":"/videos/110133117/pictures/494272000","active":true,"sizes":[{"width":100,"height":75,"link":"https://i.vimeocdn.com/video/494272000_100x75.jpg"},{"width":200,"height":150,"link":"https://i.vimeocdn.com/video/494272000_200x150.jpg"},{"width":295,"height":166,"link":"https://i.vimeocdn.com/video/494272000_295x166.jpg"},{"width":640,"height":360,"link":"https://i.vimeocdn.com/video/494272000_640x360.jpg"},{"width":960,"height":540,"link":"https://i.vimeocdn.com/video/494272000_960x540.jpg"},{"width":1280,"height":720,"link":"https://i.vimeocdn.com/video/494272000_1280x720.jpg"}]},"tags":[],"stats":{"plays":14},"metadata":{"connections":{"comments":{"uri":"/videos/110133117/comments","options":["GET","POST"],"total":0},"credits":{"uri":"/videos/110133117/credits","options":["GET","POST"],"total":1},"likes":{"uri":"/videos/110133117/likes","options":["GET"],"total":0},"pictures":{"uri":"/videos/110133117/pictures","options":["GET","POST"],"total":1},"texttracks":{"uri":"/videos/110133117/texttracks","options":["GET","POST"],"total":0}},"interactions":{"watchlater":{"added":false,"added_time":null,"uri":"/users/33772623/watchlater/110133117"}}},"user":{"uri":"/users/33772623","name":"Raw
157
+ Funk Maharishi","link":"https://vimeo.com/rawfunkmaharishi","location":null,"bio":null,"created_time":"2014-10-27T12:06:25+00:00","account":"basic","pictures":{"uri":"/users/33772623/pictures/8588995","active":true,"sizes":[{"width":30,"height":30,"link":"https://i.vimeocdn.com/portrait/8588995_30x30.jpg"},{"width":75,"height":75,"link":"https://i.vimeocdn.com/portrait/8588995_75x75.jpg"},{"width":100,"height":100,"link":"https://i.vimeocdn.com/portrait/8588995_100x100.jpg"},{"width":300,"height":300,"link":"https://i.vimeocdn.com/portrait/8588995_300x300.jpg"}]},"websites":[{"name":"http://rawfunkmaharishi.uk/","link":"http://rawfunkmaharishi.uk/","description":null}],"metadata":{"connections":{"activities":{"uri":"/users/33772623/activities","options":["GET"]},"albums":{"uri":"/users/33772623/albums","options":["GET"],"total":1},"channels":{"uri":"/users/33772623/channels","options":["GET"],"total":0},"feed":{"uri":"/users/33772623/feed","options":["GET"]},"followers":{"uri":"/users/33772623/followers","options":["GET"],"total":0},"following":{"uri":"/users/33772623/following","options":["GET"],"total":0},"groups":{"uri":"/users/33772623/groups","options":["GET"],"total":0},"likes":{"uri":"/users/33772623/likes","options":["GET"],"total":0},"portfolios":{"uri":"/users/33772623/portfolios","options":["GET"],"total":0},"videos":{"uri":"/users/33772623/videos","options":["GET"],"total":4},"watchlater":{"uri":"/users/33772623/watchlater","options":["GET"],"total":0},"shared":{"uri":"/users/33772623/shared/videos","options":["GET"],"total":0},"pictures":{"uri":"/users/33772623/pictures","options":["GET","POST"],"total":1}}},"content_filter":["language","drugs","violence","nudity","safe","unrated"]},"embed":{"uri":null,"buttons":{"like":true,"watchlater":true,"share":true,"embed":true,"hd":false,"fullscreen":true,"scaling":true},"logos":{"vimeo":true,"custom":{"active":false,"link":null,"sticky":false}},"title":{"name":"user","owner":"user","portrait":"user"},"playbar":true,"volume":true,"color":"00adef"},"app":null,"status":"available","embed_presets":null}'
158
+ http_version:
159
+ recorded_at: Tue, 24 Mar 2015 16:42:46 GMT
160
+ - request:
161
+ method: get
162
+ uri: https://api.vimeo.com/videos/110132671
163
+ body:
164
+ encoding: US-ASCII
165
+ string: ''
166
+ headers:
167
+ Authorization:
168
+ - bearer <VIMEO_BEARER_TOKEN>
169
+ Accept:
170
+ - application/json
171
+ response:
172
+ status:
173
+ code: 200
174
+ message: OK
175
+ headers:
176
+ Date:
177
+ - Tue, 24 Mar 2015 16:42:47 GMT
178
+ Server:
179
+ - nginx
180
+ Content-Type:
181
+ - application/vnd.vimeo.video+json
182
+ Cache-Control:
183
+ - no-cache, max-age=315360000
184
+ Expires:
185
+ - Fri, 21 Mar 2025 16:42:47 GMT
186
+ Content-Length:
187
+ - '3659'
188
+ Accept-Ranges:
189
+ - bytes
190
+ Via:
191
+ - 1.1 varnish
192
+ Age:
193
+ - '0'
194
+ X-Served-By:
195
+ - cache-fra1225-FRA
196
+ X-Cache:
197
+ - MISS
198
+ X-Cache-Hits:
199
+ - '0'
200
+ X-Timer:
201
+ - S1427215367.050571,VS0,VE226
202
+ Vary:
203
+ - Accept,Vimeo-Client-Id,Accept-Encoding
204
+ body:
205
+ encoding: UTF-8
206
+ string: '{"uri":"/videos/110132671","name":"Discotheque Metamorphosis","description":null,"link":"https://vimeo.com/rawfunkmaharishi/discotheque-metamorphosis","duration":218,"width":640,"language":null,"height":360,"created_time":"2014-10-27T12:10:13+00:00","modified_time":"2015-03-23T22:08:53+00:00","content_rating":["unrated"],"license":"by-nc-sa","privacy":{"view":"anybody","embed":"public","download":true,"add":true,"comments":"anybody"},"pictures":{"uri":"/videos/110132671/pictures/494269097","active":true,"sizes":[{"width":100,"height":75,"link":"https://i.vimeocdn.com/video/494269097_100x75.jpg"},{"width":200,"height":150,"link":"https://i.vimeocdn.com/video/494269097_200x150.jpg"},{"width":295,"height":166,"link":"https://i.vimeocdn.com/video/494269097_295x166.jpg"},{"width":640,"height":360,"link":"https://i.vimeocdn.com/video/494269097_640x360.jpg"},{"width":960,"height":540,"link":"https://i.vimeocdn.com/video/494269097_960x540.jpg"}]},"tags":[],"stats":{"plays":9},"metadata":{"connections":{"comments":{"uri":"/videos/110132671/comments","options":["GET","POST"],"total":0},"credits":{"uri":"/videos/110132671/credits","options":["GET","POST"],"total":1},"likes":{"uri":"/videos/110132671/likes","options":["GET"],"total":0},"pictures":{"uri":"/videos/110132671/pictures","options":["GET","POST"],"total":1},"texttracks":{"uri":"/videos/110132671/texttracks","options":["GET","POST"],"total":0}},"interactions":{"watchlater":{"added":false,"added_time":null,"uri":"/users/33772623/watchlater/110132671"}}},"user":{"uri":"/users/33772623","name":"Raw
207
+ Funk Maharishi","link":"https://vimeo.com/rawfunkmaharishi","location":null,"bio":null,"created_time":"2014-10-27T12:06:25+00:00","account":"basic","pictures":{"uri":"/users/33772623/pictures/8588995","active":true,"sizes":[{"width":30,"height":30,"link":"https://i.vimeocdn.com/portrait/8588995_30x30.jpg"},{"width":75,"height":75,"link":"https://i.vimeocdn.com/portrait/8588995_75x75.jpg"},{"width":100,"height":100,"link":"https://i.vimeocdn.com/portrait/8588995_100x100.jpg"},{"width":300,"height":300,"link":"https://i.vimeocdn.com/portrait/8588995_300x300.jpg"}]},"websites":[{"name":"http://rawfunkmaharishi.uk/","link":"http://rawfunkmaharishi.uk/","description":null}],"metadata":{"connections":{"activities":{"uri":"/users/33772623/activities","options":["GET"]},"albums":{"uri":"/users/33772623/albums","options":["GET"],"total":1},"channels":{"uri":"/users/33772623/channels","options":["GET"],"total":0},"feed":{"uri":"/users/33772623/feed","options":["GET"]},"followers":{"uri":"/users/33772623/followers","options":["GET"],"total":0},"following":{"uri":"/users/33772623/following","options":["GET"],"total":0},"groups":{"uri":"/users/33772623/groups","options":["GET"],"total":0},"likes":{"uri":"/users/33772623/likes","options":["GET"],"total":0},"portfolios":{"uri":"/users/33772623/portfolios","options":["GET"],"total":0},"videos":{"uri":"/users/33772623/videos","options":["GET"],"total":4},"watchlater":{"uri":"/users/33772623/watchlater","options":["GET"],"total":0},"shared":{"uri":"/users/33772623/shared/videos","options":["GET"],"total":0},"pictures":{"uri":"/users/33772623/pictures","options":["GET","POST"],"total":1}}},"content_filter":["language","drugs","violence","nudity","safe","unrated"]},"embed":{"uri":null,"buttons":{"like":true,"watchlater":true,"share":true,"embed":true,"hd":false,"fullscreen":true,"scaling":true},"logos":{"vimeo":true,"custom":{"active":false,"link":null,"sticky":false}},"title":{"name":"user","owner":"user","portrait":"user"},"playbar":true,"volume":true,"color":"00adef"},"app":null,"status":"available","embed_presets":null}'
208
+ http_version:
209
+ recorded_at: Tue, 24 Mar 2015 16:42:47 GMT
210
+ recorded_with: VCR 2.9.3
@@ -15,8 +15,8 @@ http_interactions:
15
15
  - FlickRaw/0.9.8
16
16
  Authorization:
17
17
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
18
- oauth_nonce="whHZyZ8ylV8%2FC9JnMZHVKQpd6j5UH%2BHHTzYMIjnW5QU%3D", oauth_signature="<FLICKR_SECRET>%26",
19
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015278", oauth_token="",
18
+ oauth_nonce="ztUJ%2FHp6iuarNit4e0THH2%2BFqg2jN2O%2F9dgBagQ8vI0%3D", oauth_signature="<FLICKR_SECRET>%26",
19
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127816", oauth_token="",
20
20
  oauth_version="1.0"
21
21
  Content-Type:
22
22
  - application/x-www-form-urlencoded
@@ -26,7 +26,7 @@ http_interactions:
26
26
  message: OK
27
27
  headers:
28
28
  Date:
29
- - Tue, 10 Mar 2015 19:21:18 GMT
29
+ - Mon, 23 Mar 2015 16:23:36 GMT
30
30
  Content-Type:
31
31
  - application/json
32
32
  Content-Length:
@@ -38,16 +38,18 @@ http_interactions:
38
38
  Cache-Control:
39
39
  - private
40
40
  X-Served-By:
41
- - www333.flickr.bf1.yahoo.com
41
+ - www282.flickr.bf1.yahoo.com
42
42
  Vary:
43
43
  - Accept-Encoding
44
44
  Age:
45
45
  - '0'
46
46
  Via:
47
- - http/1.1 fts112.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
- http/1.1 r04.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
47
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
48
+ http/1.1 r06.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
49
49
  Server:
50
50
  - ATS
51
+ Strict-Transport-Security:
52
+ - max-age=259200
51
53
  Connection:
52
54
  - keep-alive
53
55
  body:
@@ -60,7 +62,7 @@ http_interactions:
60
62
  pots","isprimary":"0","ispublic":1,"isfriend":0,"isfamily":0}],"page":1,"per_page":500,"perpage":500,"pages":1,"total":"8","title":"Garden
61
63
  2015"},"stat":"ok"}'
62
64
  http_version:
63
- recorded_at: Tue, 10 Mar 2015 19:21:19 GMT
65
+ recorded_at: Mon, 23 Mar 2015 16:23:36 GMT
64
66
  - request:
65
67
  method: post
66
68
  uri: https://api.flickr.com/services/rest/
@@ -76,8 +78,8 @@ http_interactions:
76
78
  - FlickRaw/0.9.8
77
79
  Authorization:
78
80
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
79
- oauth_nonce="xlLHYqmSqL1t3e8MWzSoV%2Fsev3kLDRQrk4INFw6u15E%3D", oauth_signature="<FLICKR_SECRET>%26",
80
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015279", oauth_token="",
81
+ oauth_nonce="ElU9CwQbSgnUnwS%2FwVPFDSz1SyEqXT5dVDsag2MUD%2BQ%3D", oauth_signature="<FLICKR_SECRET>%26",
82
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127816", oauth_token="",
81
83
  oauth_version="1.0"
82
84
  Content-Type:
83
85
  - application/x-www-form-urlencoded
@@ -87,11 +89,11 @@ http_interactions:
87
89
  message: OK
88
90
  headers:
89
91
  Date:
90
- - Tue, 10 Mar 2015 19:21:19 GMT
92
+ - Mon, 23 Mar 2015 16:23:37 GMT
91
93
  Content-Type:
92
94
  - application/json
93
95
  Content-Length:
94
- - '555'
96
+ - '554'
95
97
  P3p:
96
98
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
97
99
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -99,25 +101,27 @@ http_interactions:
99
101
  Cache-Control:
100
102
  - private
101
103
  X-Served-By:
102
- - www288.flickr.bf1.yahoo.com
104
+ - www43.flickr.bf1.yahoo.com
103
105
  Vary:
104
106
  - Accept-Encoding
105
107
  Age:
106
- - '0'
108
+ - '1'
107
109
  Via:
108
- - http/1.1 fts118.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
109
- http/1.1 r20.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
110
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
111
+ http/1.1 r11.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
110
112
  Server:
111
113
  - ATS
114
+ Strict-Transport-Security:
115
+ - max-age=259200
112
116
  Connection:
113
117
  - keep-alive
114
118
  body:
115
119
  encoding: ASCII-8BIT
116
120
  string: '{"photo":{"id":"16252009191","secret":"ea2d06e6bb","server":"7506","farm":8,"dateuploaded":"1420982656","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dd0b6e4274","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"First
117
121
  planting of the year"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1420982656","taken":"2015-01-11
118
- 14:22:47","takengranularity":"0","takenunknown":"0","lastupdate":"1420982715"},"views":"166","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16252009191\/"}]},"media":"photo"},"stat":"ok"}'
122
+ 14:22:47","takengranularity":"0","takenunknown":"0","lastupdate":"1420982715"},"views":"167","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16252009191\/"}]},"media":"photo"},"stat":"ok"}'
119
123
  http_version:
120
- recorded_at: Tue, 10 Mar 2015 19:21:19 GMT
124
+ recorded_at: Mon, 23 Mar 2015 16:23:37 GMT
121
125
  - request:
122
126
  method: post
123
127
  uri: https://api.flickr.com/services/rest/
@@ -133,8 +137,8 @@ http_interactions:
133
137
  - FlickRaw/0.9.8
134
138
  Authorization:
135
139
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
136
- oauth_nonce="B9feZGWcE0SBfmCWKc48tyo9fkbH%2Bp%2F%2FF%2BYPpdK8FMk%3D", oauth_signature="<FLICKR_SECRET>%26",
137
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015279", oauth_token="",
140
+ oauth_nonce="Rtuc1K0c3v63Uv8bcHP%2FxL5fI52AQyiC0zym5HCYp7o%3D", oauth_signature="<FLICKR_SECRET>%26",
141
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127817", oauth_token="",
138
142
  oauth_version="1.0"
139
143
  Content-Type:
140
144
  - application/x-www-form-urlencoded
@@ -144,7 +148,7 @@ http_interactions:
144
148
  message: OK
145
149
  headers:
146
150
  Date:
147
- - Tue, 10 Mar 2015 19:21:19 GMT
151
+ - Mon, 23 Mar 2015 16:23:37 GMT
148
152
  Content-Type:
149
153
  - application/json
150
154
  Content-Length:
@@ -156,24 +160,26 @@ http_interactions:
156
160
  Cache-Control:
157
161
  - private
158
162
  X-Served-By:
159
- - www220.flickr.bf1.yahoo.com
163
+ - www346.flickr.bf1.yahoo.com
160
164
  Vary:
161
165
  - Accept-Encoding
162
166
  Age:
163
167
  - '0'
164
168
  Via:
165
- - http/1.1 fts116.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
166
- http/1.1 r20.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
169
+ - http/1.1 fts119.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
170
+ http/1.1 r20.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
167
171
  Server:
168
172
  - ATS
173
+ Strict-Transport-Security:
174
+ - max-age=259200
169
175
  Connection:
170
176
  - keep-alive
171
177
  body:
172
178
  encoding: ASCII-8BIT
173
179
  string: '{"photo":{"id":"16308144622","secret":"4822b81b0e","server":"7480","farm":8,"dateuploaded":"1421591962","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"fafedaf4a8","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Seedlings"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1421591962","taken":"2015-01-18
174
- 15:31:34","takengranularity":"0","takenunknown":"0","lastupdate":"1421592677"},"views":"175","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308144622\/"}]},"media":"photo"},"stat":"ok"}'
180
+ 15:31:34","takengranularity":"0","takenunknown":"0","lastupdate":"1421592677"},"views":"176","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308144622\/"}]},"media":"photo"},"stat":"ok"}'
175
181
  http_version:
176
- recorded_at: Tue, 10 Mar 2015 19:21:19 GMT
182
+ recorded_at: Mon, 23 Mar 2015 16:23:37 GMT
177
183
  - request:
178
184
  method: post
179
185
  uri: https://api.flickr.com/services/rest/
@@ -189,8 +195,8 @@ http_interactions:
189
195
  - FlickRaw/0.9.8
190
196
  Authorization:
191
197
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
192
- oauth_nonce="iP8RSx%2BnFAmkayFoM%2B%2Byt5D56bS4ScbQ9jREBj1PqDc%3D", oauth_signature="<FLICKR_SECRET>%26",
193
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015279", oauth_token="",
198
+ oauth_nonce="izaDGpaQMRImN8K3FE%2Fr%2FxnQsM%2Fs7HDpFwQiXo4UHNA%3D", oauth_signature="<FLICKR_SECRET>%26",
199
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127817", oauth_token="",
194
200
  oauth_version="1.0"
195
201
  Content-Type:
196
202
  - application/x-www-form-urlencoded
@@ -200,7 +206,7 @@ http_interactions:
200
206
  message: OK
201
207
  headers:
202
208
  Date:
203
- - Tue, 10 Mar 2015 19:21:19 GMT
209
+ - Mon, 23 Mar 2015 16:23:37 GMT
204
210
  Content-Type:
205
211
  - application/json
206
212
  Content-Length:
@@ -212,25 +218,27 @@ http_interactions:
212
218
  Cache-Control:
213
219
  - private
214
220
  X-Served-By:
215
- - www253.flickr.bf1.yahoo.com
221
+ - www228.flickr.bf1.yahoo.com
216
222
  Vary:
217
223
  - Accept-Encoding
218
224
  Age:
219
- - '2'
225
+ - '0'
220
226
  Via:
221
- - http/1.1 fts114.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
222
- http/1.1 r22.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
227
+ - http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
228
+ http/1.1 r18.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
223
229
  Server:
224
230
  - ATS
231
+ Strict-Transport-Security:
232
+ - max-age=259200
225
233
  Connection:
226
234
  - keep-alive
227
235
  body:
228
236
  encoding: ASCII-8BIT
229
237
  string: '{"photo":{"id":"16202827068","secret":"ee50e0cb1c","server":"7357","farm":8,"dateuploaded":"1422476532","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"06e6a96521","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Tomato
230
238
  farm"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476532","taken":"2015-01-28
231
- 21:19:32","takengranularity":"0","takenunknown":"0","lastupdate":"1422476584"},"views":"103","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16202827068\/"}]},"media":"photo"},"stat":"ok"}'
239
+ 21:19:32","takengranularity":"0","takenunknown":"0","lastupdate":"1422476584"},"views":"104","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16202827068\/"}]},"media":"photo"},"stat":"ok"}'
232
240
  http_version:
233
- recorded_at: Tue, 10 Mar 2015 19:21:20 GMT
241
+ recorded_at: Mon, 23 Mar 2015 16:23:37 GMT
234
242
  - request:
235
243
  method: post
236
244
  uri: https://api.flickr.com/services/rest/
@@ -246,8 +254,8 @@ http_interactions:
246
254
  - FlickRaw/0.9.8
247
255
  Authorization:
248
256
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
249
- oauth_nonce="pTvzNLD8GNU2axNRohrswTNzNiKa%2F9vEoqqTPrL5ORQ%3D", oauth_signature="<FLICKR_SECRET>%26",
250
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015280", oauth_token="",
257
+ oauth_nonce="m6HoByi51tZ8MqRhMtDRQEPXf6n4Mc1f3X%2BbKXN4USE%3D", oauth_signature="<FLICKR_SECRET>%26",
258
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127817", oauth_token="",
251
259
  oauth_version="1.0"
252
260
  Content-Type:
253
261
  - application/x-www-form-urlencoded
@@ -257,7 +265,7 @@ http_interactions:
257
265
  message: OK
258
266
  headers:
259
267
  Date:
260
- - Tue, 10 Mar 2015 19:21:20 GMT
268
+ - Mon, 23 Mar 2015 16:23:38 GMT
261
269
  Content-Type:
262
270
  - application/json
263
271
  Content-Length:
@@ -269,24 +277,26 @@ http_interactions:
269
277
  Cache-Control:
270
278
  - private
271
279
  X-Served-By:
272
- - www265.flickr.bf1.yahoo.com
280
+ - www268.flickr.bf1.yahoo.com
273
281
  Vary:
274
282
  - Accept-Encoding
275
283
  Age:
276
284
  - '0'
277
285
  Via:
278
- - http/1.1 fts115.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
279
- http/1.1 r22.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
286
+ - http/1.1 fts111.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
287
+ http/1.1 r22.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
280
288
  Server:
281
289
  - ATS
290
+ Strict-Transport-Security:
291
+ - max-age=259200
282
292
  Connection:
283
293
  - keep-alive
284
294
  body:
285
295
  encoding: ASCII-8BIT
286
296
  string: '{"photo":{"id":"16388723891","secret":"10a4a8e745","server":"7382","farm":8,"dateuploaded":"1422476602","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"203886b5a3","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Cucamelon"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1422476602","taken":"2015-01-28
287
- 21:19:45","takengranularity":"0","takenunknown":"0","lastupdate":"1422477672"},"views":"116","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16388723891\/"}]},"media":"photo"},"stat":"ok"}'
297
+ 21:19:45","takengranularity":"0","takenunknown":"0","lastupdate":"1422477672"},"views":"118","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16388723891\/"}]},"media":"photo"},"stat":"ok"}'
288
298
  http_version:
289
- recorded_at: Tue, 10 Mar 2015 19:21:20 GMT
299
+ recorded_at: Mon, 23 Mar 2015 16:23:38 GMT
290
300
  - request:
291
301
  method: post
292
302
  uri: https://api.flickr.com/services/rest/
@@ -302,8 +312,8 @@ http_interactions:
302
312
  - FlickRaw/0.9.8
303
313
  Authorization:
304
314
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
305
- oauth_nonce="kg1BksqCaDvHdQSBqn%2FqMRGqWU%2BBasSjsW3L9OMqV0o%3D", oauth_signature="<FLICKR_SECRET>%26",
306
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015280", oauth_token="",
315
+ oauth_nonce="NPc%2BLUCOo4mItL%2Fif%2B25sHsQ05nIFOWsrtqU%2BDyuDBw%3D", oauth_signature="<FLICKR_SECRET>%26",
316
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127818", oauth_token="",
307
317
  oauth_version="1.0"
308
318
  Content-Type:
309
319
  - application/x-www-form-urlencoded
@@ -313,7 +323,7 @@ http_interactions:
313
323
  message: OK
314
324
  headers:
315
325
  Date:
316
- - Tue, 10 Mar 2015 19:21:20 GMT
326
+ - Mon, 23 Mar 2015 16:23:38 GMT
317
327
  Content-Type:
318
328
  - application/json
319
329
  Content-Length:
@@ -325,25 +335,27 @@ http_interactions:
325
335
  Cache-Control:
326
336
  - private
327
337
  X-Served-By:
328
- - www52.flickr.bf1.yahoo.com
338
+ - www45.flickr.bf1.yahoo.com
329
339
  Vary:
330
340
  - Accept-Encoding
331
341
  Age:
332
342
  - '0'
333
343
  Via:
334
- - http/1.1 fts109.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
335
- http/1.1 r22.ycpi.ams.yahoo.net (ApacheTrafficServer [cMsSf ])
344
+ - http/1.1 fts121.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
345
+ http/1.1 r03.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
336
346
  Server:
337
347
  - ATS
348
+ Strict-Transport-Security:
349
+ - max-age=259200
338
350
  Connection:
339
351
  - keep-alive
340
352
  body:
341
353
  encoding: ASCII-8BIT
342
354
  string: '{"photo":{"id":"16308619689","secret":"41143c6dbb","server":"7327","farm":8,"dateuploaded":"1423599466","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"dc11437dda","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Potato
343
355
  kit"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1423599466","taken":"2015-02-10
344
- 21:14:58","takengranularity":"0","takenunknown":"0","lastupdate":"1423601463"},"views":"75","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16308619689\/"}]},"media":"photo"},"stat":"ok"}'
356
+ 21:14:58","takengranularity":"0","takenunknown":"0","lastupdate":"1423601463"},"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\/16308619689\/"}]},"media":"photo"},"stat":"ok"}'
345
357
  http_version:
346
- recorded_at: Tue, 10 Mar 2015 19:21:20 GMT
358
+ recorded_at: Mon, 23 Mar 2015 16:23:38 GMT
347
359
  - request:
348
360
  method: post
349
361
  uri: https://api.flickr.com/services/rest/
@@ -359,8 +371,8 @@ http_interactions:
359
371
  - FlickRaw/0.9.8
360
372
  Authorization:
361
373
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
362
- oauth_nonce="ZC0ynSfAfmvagVhZZAVdmRC1H7ADu1f1dGli4cjb%2BsA%3D", oauth_signature="<FLICKR_SECRET>%26",
363
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015280", oauth_token="",
374
+ oauth_nonce="%2FPqjHo5oAPLcue9h%2Beyi0HiVCeIAVjsuLOEUS%2FtQn6Q%3D", oauth_signature="<FLICKR_SECRET>%26",
375
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127818", oauth_token="",
364
376
  oauth_version="1.0"
365
377
  Content-Type:
366
378
  - application/x-www-form-urlencoded
@@ -370,11 +382,11 @@ http_interactions:
370
382
  message: OK
371
383
  headers:
372
384
  Date:
373
- - Tue, 10 Mar 2015 19:21:20 GMT
385
+ - Mon, 23 Mar 2015 16:23:39 GMT
374
386
  Content-Type:
375
387
  - application/json
376
388
  Content-Length:
377
- - '550'
389
+ - '551'
378
390
  P3p:
379
391
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
380
392
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -382,25 +394,27 @@ http_interactions:
382
394
  Cache-Control:
383
395
  - private
384
396
  X-Served-By:
385
- - www50.flickr.bf1.yahoo.com
397
+ - www37.flickr.bf1.yahoo.com
386
398
  Vary:
387
399
  - Accept-Encoding
388
400
  Age:
389
- - '0'
401
+ - '2'
390
402
  Via:
391
- - http/1.1 fts107.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
392
- http/1.1 r12.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
403
+ - http/1.1 fts108.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
404
+ http/1.1 r04.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
393
405
  Server:
394
406
  - ATS
407
+ Strict-Transport-Security:
408
+ - max-age=259200
395
409
  Connection:
396
410
  - keep-alive
397
411
  body:
398
412
  encoding: ASCII-8BIT
399
413
  string: '{"photo":{"id":"16367228619","secret":"3af2aba147","server":"8660","farm":9,"dateuploaded":"1424124245","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"7145f68aed","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Embothrium
400
414
  seedling"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1424124245","taken":"2015-02-16
401
- 23:03:06","takengranularity":"0","takenunknown":"0","lastupdate":"1424125294"},"views":"55","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16367228619\/"}]},"media":"photo"},"stat":"ok"}'
415
+ 23:03:06","takengranularity":"0","takenunknown":"0","lastupdate":"1424125294"},"views":"57","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16367228619\/"}]},"media":"photo"},"stat":"ok"}'
402
416
  http_version:
403
- recorded_at: Tue, 10 Mar 2015 19:21:21 GMT
417
+ recorded_at: Mon, 23 Mar 2015 16:23:39 GMT
404
418
  - request:
405
419
  method: post
406
420
  uri: https://api.flickr.com/services/rest/
@@ -416,8 +430,8 @@ http_interactions:
416
430
  - FlickRaw/0.9.8
417
431
  Authorization:
418
432
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
419
- oauth_nonce="KeAgyelsDmJpWG50jEySqLJqX1FG2e9dYgxRTUQQnxI%3D", oauth_signature="<FLICKR_SECRET>%26",
420
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015281", oauth_token="",
433
+ oauth_nonce="x%2FoRexYOMwfYkFoiug5cOeUnL5xjFPnpHmrQvn4qqek%3D", oauth_signature="<FLICKR_SECRET>%26",
434
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127819", oauth_token="",
421
435
  oauth_version="1.0"
422
436
  Content-Type:
423
437
  - application/x-www-form-urlencoded
@@ -427,11 +441,11 @@ http_interactions:
427
441
  message: OK
428
442
  headers:
429
443
  Date:
430
- - Tue, 10 Mar 2015 19:21:21 GMT
444
+ - Mon, 23 Mar 2015 16:23:39 GMT
431
445
  Content-Type:
432
446
  - application/json
433
447
  Content-Length:
434
- - '545'
448
+ - '546'
435
449
  P3p:
436
450
  - policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV
437
451
  TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY
@@ -439,24 +453,26 @@ http_interactions:
439
453
  Cache-Control:
440
454
  - private
441
455
  X-Served-By:
442
- - www227.flickr.bf1.yahoo.com
456
+ - www49.flickr.bf1.yahoo.com
443
457
  Vary:
444
458
  - Accept-Encoding
445
459
  Age:
446
460
  - '0'
447
461
  Via:
448
- - http/1.1 fts105.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
449
- http/1.1 r17.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
462
+ - http/1.1 fts101.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
463
+ http/1.1 r17.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
450
464
  Server:
451
465
  - ATS
466
+ Strict-Transport-Security:
467
+ - max-age=259200
452
468
  Connection:
453
469
  - keep-alive
454
470
  body:
455
471
  encoding: ASCII-8BIT
456
472
  string: '{"photo":{"id":"16752302412","secret":"d80b27c8dc","server":"8707","farm":9,"dateuploaded":"1425824636","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"b2e8dd6c5c","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Growhouse"},"description":{"_content":""},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824636","taken":"2015-03-08
457
- 15:19:53","takengranularity":"0","takenunknown":"0","lastupdate":"1425825014"},"views":"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\/16752302412\/"}]},"media":"photo"},"stat":"ok"}'
473
+ 15:19:53","takengranularity":"0","takenunknown":"0","lastupdate":"1425825014"},"views":"38","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752302412\/"}]},"media":"photo"},"stat":"ok"}'
458
474
  http_version:
459
- recorded_at: Tue, 10 Mar 2015 19:21:21 GMT
475
+ recorded_at: Mon, 23 Mar 2015 16:23:39 GMT
460
476
  - request:
461
477
  method: post
462
478
  uri: https://api.flickr.com/services/rest/
@@ -472,8 +488,8 @@ http_interactions:
472
488
  - FlickRaw/0.9.8
473
489
  Authorization:
474
490
  - OAuth realm="https://api.flickr.com/services/rest/", oauth_consumer_key="<FLICKR_API_KEY>",
475
- oauth_nonce="mip%2F3SRx8tF07fC3CcGjTO7EwdJ7Fbx7V6FksRODy%2FE%3D", oauth_signature="<FLICKR_SECRET>%26",
476
- oauth_signature_method="PLAINTEXT", oauth_timestamp="1426015281", oauth_token="",
491
+ oauth_nonce="cAn%2FxKNyqeN%2B89QeyXui9Hk3%2F9cVTjdCkPSHaYLc89s%3D", oauth_signature="<FLICKR_SECRET>%26",
492
+ oauth_signature_method="PLAINTEXT", oauth_timestamp="1427127819", oauth_token="",
477
493
  oauth_version="1.0"
478
494
  Content-Type:
479
495
  - application/x-www-form-urlencoded
@@ -483,7 +499,7 @@ http_interactions:
483
499
  message: OK
484
500
  headers:
485
501
  Date:
486
- - Tue, 10 Mar 2015 19:21:21 GMT
502
+ - Mon, 23 Mar 2015 16:23:39 GMT
487
503
  Content-Type:
488
504
  - application/json
489
505
  Content-Length:
@@ -495,16 +511,18 @@ http_interactions:
495
511
  Cache-Control:
496
512
  - private
497
513
  X-Served-By:
498
- - www271.flickr.bf1.yahoo.com
514
+ - www248.flickr.bf1.yahoo.com
499
515
  Vary:
500
516
  - Accept-Encoding
501
517
  Age:
502
518
  - '0'
503
519
  Via:
504
- - http/1.1 fts123.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
505
- http/1.1 r06.ycpi.ir2.yahoo.net (ApacheTrafficServer [cMsSf ])
520
+ - http/1.1 fts102.flickr.bf1.yahoo.com (ApacheTrafficServer/4.0.2 [cMsSf ]),
521
+ http/1.1 r05.ycpi.dea.yahoo.net (ApacheTrafficServer [cMsSf ])
506
522
  Server:
507
523
  - ATS
524
+ Strict-Transport-Security:
525
+ - max-age=259200
508
526
  Connection:
509
527
  - keep-alive
510
528
  body:
@@ -512,7 +530,7 @@ http_interactions:
512
530
  string: '{"photo":{"id":"16752239531","secret":"2bcaa35495","server":"7651","farm":8,"dateuploaded":"1425824917","isfavorite":0,"license":"1","safety_level":"0","rotation":0,"originalsecret":"6f79696344","originalformat":"jpg","owner":{"nsid":"73135567@N00","username":"pikesley","realname":"Sam","location":"London","iconserver":"5072","iconfarm":6,"path_alias":"pikesley"},"title":{"_content":"Patio
513
531
  pots"},"description":{"_content":"Chives, tarragon, sage, thyme, rosemary,
514
532
  spinachy things, chocolate mint, potato bags\n"},"visibility":{"ispublic":1,"isfriend":0,"isfamily":0},"dates":{"posted":"1425824917","taken":"2015-03-08
515
- 15:20:22","takengranularity":"0","takenunknown":"0","lastupdate":"1425825005"},"views":"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\/16752239531\/"}]},"media":"photo"},"stat":"ok"}'
533
+ 15:20:22","takengranularity":"0","takenunknown":"0","lastupdate":"1425825005"},"views":"40","editability":{"cancomment":0,"canaddmeta":0},"publiceditability":{"cancomment":1,"canaddmeta":0},"usage":{"candownload":1,"canblog":0,"canprint":0,"canshare":1},"comments":{"_content":"0"},"notes":{"note":[]},"people":{"haspeople":0},"tags":{"tag":[]},"urls":{"url":[{"type":"photopage","_content":"https:\/\/www.flickr.com\/photos\/pikesley\/16752239531\/"}]},"media":"photo"},"stat":"ok"}'
516
534
  http_version:
517
- recorded_at: Tue, 10 Mar 2015 19:21:21 GMT
535
+ recorded_at: Mon, 23 Mar 2015 16:23:39 GMT
518
536
  recorded_with: VCR 2.9.3