feedlr 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +22 -0
  5. data/.yardopts +5 -0
  6. data/Gemfile +32 -0
  7. data/Guardfile +7 -0
  8. data/LICENSE.md +16 -0
  9. data/README.md +85 -0
  10. data/Rakefile +10 -0
  11. data/feedlr.gemspec +27 -0
  12. data/lib/feedlr.rb +34 -0
  13. data/lib/feedlr/base.rb +4 -0
  14. data/lib/feedlr/client.rb +60 -0
  15. data/lib/feedlr/collection.rb +15 -0
  16. data/lib/feedlr/error.rb +79 -0
  17. data/lib/feedlr/gateway/categories.rb +36 -0
  18. data/lib/feedlr/gateway/entries.rb +40 -0
  19. data/lib/feedlr/gateway/evernote.rb +37 -0
  20. data/lib/feedlr/gateway/facebook.rb +28 -0
  21. data/lib/feedlr/gateway/feeds.rb +26 -0
  22. data/lib/feedlr/gateway/markers.rb +195 -0
  23. data/lib/feedlr/gateway/microsoft.rb +30 -0
  24. data/lib/feedlr/gateway/mixes.rb +29 -0
  25. data/lib/feedlr/gateway/opml.rb +26 -0
  26. data/lib/feedlr/gateway/preferences.rb +25 -0
  27. data/lib/feedlr/gateway/profile.rb +25 -0
  28. data/lib/feedlr/gateway/search.rb +41 -0
  29. data/lib/feedlr/gateway/shorten.rb +17 -0
  30. data/lib/feedlr/gateway/streams.rb +42 -0
  31. data/lib/feedlr/gateway/subscriptions.rb +43 -0
  32. data/lib/feedlr/gateway/tags.rb +88 -0
  33. data/lib/feedlr/gateway/topics.rb +43 -0
  34. data/lib/feedlr/gateway/twitter.rb +29 -0
  35. data/lib/feedlr/mapper.rb +25 -0
  36. data/lib/feedlr/rate_limit.rb +21 -0
  37. data/lib/feedlr/request.rb +148 -0
  38. data/lib/feedlr/success.rb +5 -0
  39. data/lib/feedlr/version.rb +15 -0
  40. data/spec/cassettes/Feedlr_Gateway_Categories/_change_category_label/resoponds_with_hashie_object.yml +50 -0
  41. data/spec/cassettes/Feedlr_Gateway_Categories/_delete_category/resoponds_with_hashie_object.yml +50 -0
  42. data/spec/cassettes/Feedlr_Gateway_Categories/_user_categories/resoponds_with_hashie_object.yml +52 -0
  43. data/spec/cassettes/Feedlr_Gateway_Entries/_add_entry/resoponds_with_hashie_object.yml +52 -0
  44. data/spec/cassettes/Feedlr_Gateway_Entries/_user_entries/resoponds_with_hashie_object.yml +337 -0
  45. data/spec/cassettes/Feedlr_Gateway_Evernote/_add_to_evernote/resoponds_with_hashie_object.yml +50 -0
  46. data/spec/cassettes/Feedlr_Gateway_Evernote/_evernote_notebooks/resoponds_with_hashie_object.yml +51 -0
  47. data/spec/cassettes/Feedlr_Gateway_Evernote/_unlink_evernote/resoponds_with_hashie_object.yml +50 -0
  48. data/spec/cassettes/Feedlr_Gateway_Facebook/_facebook_suggestions/resoponds_with_hashie_object.yml +52 -0
  49. data/spec/cassettes/Feedlr_Gateway_Facebook/_unlink_facebook/resoponds_with_hashie_object.yml +50 -0
  50. data/spec/cassettes/Feedlr_Gateway_Feeds/_feeds/resoponds_with_hashie_object.yml +51 -0
  51. data/spec/cassettes/Feedlr_Gateway_Markers/_lastest_tagged_entries/resoponds_with_hashie_object.yml +52 -0
  52. data/spec/cassettes/Feedlr_Gateway_Markers/_mark_articles_as_read/resoponds_with_hashie_object.yml +50 -0
  53. data/spec/cassettes/Feedlr_Gateway_Markers/_mark_articles_as_unread/resoponds_with_hashie_object.yml +50 -0
  54. data/spec/cassettes/Feedlr_Gateway_Markers/_mark_categories_as_read/with_asOf_param/resoponds_with_hashie_object.yml +50 -0
  55. data/spec/cassettes/Feedlr_Gateway_Markers/_mark_categories_as_read/with_lastReadEntryId_param/resoponds_with_hashie_object.yml +50 -0
  56. data/spec/cassettes/Feedlr_Gateway_Markers/_mark_feeds_as_read/with_asOf_param/resoponds_with_hashie_object.yml +50 -0
  57. data/spec/cassettes/Feedlr_Gateway_Markers/_mark_feeds_as_read/with_lastReadEntryId_param/resoponds_with_hashie_object.yml +50 -0
  58. data/spec/cassettes/Feedlr_Gateway_Markers/_sync_read_counts/resoponds_with_hashie_object.yml +52 -0
  59. data/spec/cassettes/Feedlr_Gateway_Markers/_undo_mark_categories_as_read/resoponds_with_hashie_object.yml +50 -0
  60. data/spec/cassettes/Feedlr_Gateway_Markers/_undo_mark_feeds_as_read/resoponds_with_hashie_object.yml +50 -0
  61. data/spec/cassettes/Feedlr_Gateway_Markers/_user_unread_counts/resoponds_with_hashie_object.yml +52 -0
  62. data/spec/cassettes/Feedlr_Gateway_Microsoft/_add_to_onenote/resoponds_with_hashie_object.yml +52 -0
  63. data/spec/cassettes/Feedlr_Gateway_Microsoft/_unlink_microsoft/resoponds_with_hashie_object.yml +50 -0
  64. data/spec/cassettes/Feedlr_Gateway_Mixes/_stream_most_engaging/resoponds_with_hashie_object.yml +102 -0
  65. data/spec/cassettes/Feedlr_Gateway_Opml/_import_opml/resoponds_with_hashie_object.yml +63 -0
  66. data/spec/cassettes/Feedlr_Gateway_Opml/_user_opml/resoponds_with_hashie_object.yml +80 -0
  67. data/spec/cassettes/Feedlr_Gateway_Preferences/_preferences/resoponds_with_hashie_object.yml +52 -0
  68. data/spec/cassettes/Feedlr_Gateway_Preferences/_update_preferences/resoponds_with_hashie_object.yml +50 -0
  69. data/spec/cassettes/Feedlr_Gateway_Profile/_get_profile/resoponds_with_hashie_object.yml +54 -0
  70. data/spec/cassettes/Feedlr_Gateway_Profile/_profile/resoponds_with_hashie_object.yml +54 -0
  71. data/spec/cassettes/Feedlr_Gateway_Profile/_update_profile/resoponds_with_hashie_object.yml +54 -0
  72. data/spec/cassettes/Feedlr_Gateway_Search/_search_feeds/resoponds_with_hashie_object.yml +303 -0
  73. data/spec/cassettes/Feedlr_Gateway_Search/_search_stream/resoponds_with_hashie_object.yml +1941 -0
  74. data/spec/cassettes/Feedlr_Gateway_Shorten/_shorten/resoponds_with_hashie_object.yml +51 -0
  75. data/spec/cassettes/Feedlr_Gateway_Streams/_stream_entries_contents/resoponds_with_hashie_object.yml +1150 -0
  76. data/spec/cassettes/Feedlr_Gateway_Streams/_stream_entries_ids/resoponds_with_hashie_object.yml +51 -0
  77. data/spec/cassettes/Feedlr_Gateway_Subscriptions/_add_subscription/resoponds_with_hashie_object.yml +53 -0
  78. data/spec/cassettes/Feedlr_Gateway_Subscriptions/_create_subscription/resoponds_with_hashie_object.yml +51 -0
  79. data/spec/cassettes/Feedlr_Gateway_Subscriptions/_delete_subscription/resoponds_with_hashie_object.yml +50 -0
  80. data/spec/cassettes/Feedlr_Gateway_Subscriptions/_update_subscription/resoponds_with_hashie_object.yml +51 -0
  81. data/spec/cassettes/Feedlr_Gateway_Subscriptions/_user_subscriptions/resoponds_with_hashie_object.yml +57 -0
  82. data/spec/cassettes/Feedlr_Gateway_Tags/_change_tag_label/resoponds_with_hashie_object.yml +50 -0
  83. data/spec/cassettes/Feedlr_Gateway_Tags/_delete_tags/resoponds_with_hashie_object.yml +50 -0
  84. data/spec/cassettes/Feedlr_Gateway_Tags/_get_tags/resoponds_with_hashie_object.yml +50 -0
  85. data/spec/cassettes/Feedlr_Gateway_Tags/_tag_entries/resoponds_with_hashie_object.yml +50 -0
  86. data/spec/cassettes/Feedlr_Gateway_Tags/_untag_entries/resoponds_with_hashie_object.yml +50 -0
  87. data/spec/cassettes/Feedlr_Gateway_Tags/_user_tags/resoponds_with_hashie_object.yml +50 -0
  88. data/spec/cassettes/Feedlr_Gateway_Topics/_add_topic/resoponds_with_hashie_object.yml +50 -0
  89. data/spec/cassettes/Feedlr_Gateway_Topics/_delete_topic/resoponds_with_hashie_object.yml +50 -0
  90. data/spec/cassettes/Feedlr_Gateway_Topics/_update_topic/resoponds_with_hashie_object.yml +50 -0
  91. data/spec/cassettes/Feedlr_Gateway_Topics/_user_topics/resoponds_with_hashie_object.yml +50 -0
  92. data/spec/cassettes/Feedlr_Gateway_Twitter/_twitter_suggestions/resoponds_with_hashie_object.yml +50 -0
  93. data/spec/cassettes/Feedlr_Gateway_Twitter/_unlink_twitter/resoponds_with_hashie_object.yml +50 -0
  94. data/spec/feedly/base_spec.rb +10 -0
  95. data/spec/feedly/client_spec.rb +49 -0
  96. data/spec/feedly/collection_spec.rb +21 -0
  97. data/spec/feedly/error_spec.rb +59 -0
  98. data/spec/feedly/feedly_spec.rb +54 -0
  99. data/spec/feedly/gateway/categories_spec.rb +59 -0
  100. data/spec/feedly/gateway/entries_spec.rb +67 -0
  101. data/spec/feedly/gateway/evernote_spec.rb +60 -0
  102. data/spec/feedly/gateway/facebook_spec.rb +36 -0
  103. data/spec/feedly/gateway/feeds_spec.rb +36 -0
  104. data/spec/feedly/gateway/markers_spec.rb +295 -0
  105. data/spec/feedly/gateway/microsoft_spec.rb +40 -0
  106. data/spec/feedly/gateway/mixes_spec.rb +27 -0
  107. data/spec/feedly/gateway/opml_spec.rb +57 -0
  108. data/spec/feedly/gateway/preferences_spec.rb +41 -0
  109. data/spec/feedly/gateway/profile_spec.rb +40 -0
  110. data/spec/feedly/gateway/search_spec.rb +43 -0
  111. data/spec/feedly/gateway/shorten_spec.rb +27 -0
  112. data/spec/feedly/gateway/streams_spec.rb +44 -0
  113. data/spec/feedly/gateway/subscriptions_spec.rb +87 -0
  114. data/spec/feedly/gateway/tags_spec.rb +129 -0
  115. data/spec/feedly/gateway/topics_spec.rb +77 -0
  116. data/spec/feedly/gateway/twitter_spec.rb +37 -0
  117. data/spec/feedly/mapper_spec.rb +25 -0
  118. data/spec/feedly/rate_limit_spec.rb +41 -0
  119. data/spec/feedly/request_spec.rb +74 -0
  120. data/spec/feedly/success_spec.rb +7 -0
  121. data/spec/feedly/version_spec.rb +9 -0
  122. data/spec/helper.rb +52 -0
  123. metadata +319 -0
@@ -0,0 +1,50 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://sandbox.feedly.com/v3/markers
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"categoryIds":["user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Tech","user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Entreprenuership"],"action":"markAsRead","type":"categories","asOf":1400243966}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ Authorization:
15
+ - OAuth _oauth_access_token_
16
+ User-Agent:
17
+ - Faraday v0.9.0
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sat May 17 05:37:49 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '4248'
33
+ X-Feedly-Processing-Time:
34
+ - '351'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - text/plain;charset=UTF-8
39
+ Content-Length:
40
+ - '0'
41
+ Date:
42
+ - Sat, 17 May 2014 12:37:49 GMT
43
+ Server:
44
+ - feedlyServer/1.1
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ http_version:
49
+ recorded_at: Sat, 17 May 2014 12:39:27 GMT
50
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,50 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://sandbox.feedly.com/v3/markers
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"categoryIds":["user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Tech","user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Entreprenuership"],"action":"markAsRead","type":"categories","lastReadEntryId":"k3wM4lkt2uyzklIaZG/piLCFwWpRsuSz4luWQLHP0YY=_142814c6526:338b:2190d777"}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ Authorization:
15
+ - OAuth _oauth_access_token_
16
+ User-Agent:
17
+ - Faraday v0.9.0
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sat May 17 05:37:50 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '4248'
33
+ X-Feedly-Processing-Time:
34
+ - '296'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - text/plain;charset=UTF-8
39
+ Content-Length:
40
+ - '0'
41
+ Date:
42
+ - Sat, 17 May 2014 12:37:49 GMT
43
+ Server:
44
+ - feedlyServer/1.1
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ http_version:
49
+ recorded_at: Sat, 17 May 2014 12:39:28 GMT
50
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,50 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://sandbox.feedly.com/v3/markers
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"feedIds":["feed/http://feeds.engadget.com/weblogsinc/engadget","feed/http://www.yatzer.com/feed/index.php"],"action":"markAsRead","type":"feeds","asOf":1400243969}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ Authorization:
15
+ - OAuth _oauth_access_token_
16
+ User-Agent:
17
+ - Faraday v0.9.0
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sat May 17 05:37:52 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '4248'
33
+ X-Feedly-Processing-Time:
34
+ - '299'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - text/plain;charset=UTF-8
39
+ Content-Length:
40
+ - '0'
41
+ Date:
42
+ - Sat, 17 May 2014 12:37:51 GMT
43
+ Server:
44
+ - feedlyServer/1.1
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ http_version:
49
+ recorded_at: Sat, 17 May 2014 12:39:30 GMT
50
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,50 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://sandbox.feedly.com/v3/markers
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"feedIds":["feed/http://feeds.engadget.com/weblogsinc/engadget","feed/http://www.yatzer.com/feed/index.php"],"action":"markAsRead","type":"feeds","lastReadEntryId":"k3wM4lkt2uyzklIaZG/piLCFwWpRsuSz4luWQLHP0YY=_142814c6526:338b:2190d777"}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ Authorization:
15
+ - OAuth _oauth_access_token_
16
+ User-Agent:
17
+ - Faraday v0.9.0
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sat May 17 05:37:53 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '4248'
33
+ X-Feedly-Processing-Time:
34
+ - '331'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - text/plain;charset=UTF-8
39
+ Content-Length:
40
+ - '0'
41
+ Date:
42
+ - Sat, 17 May 2014 12:37:53 GMT
43
+ Server:
44
+ - feedlyServer/1.1
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ http_version:
49
+ recorded_at: Sat, 17 May 2014 12:39:31 GMT
50
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://sandbox.feedly.com/v3/markers/reads?newerThan=1400876097
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ User-Agent:
15
+ - Feedly Ruby Gem 0.1.0
16
+ Authorization:
17
+ - OAuth _oauth_access_token_
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sat May 24 13:14:59 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '3296'
33
+ X-Feedly-Processing-Time:
34
+ - '9'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - application/json;charset=UTF-8
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Vary:
42
+ - Accept-Encoding
43
+ Date:
44
+ - Sat, 24 May 2014 20:14:59 GMT
45
+ Server:
46
+ - feedlyServer/1.1
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"entries":["wYKRd7i/lQBYjja2wdel0eZCVQ0o0HPqRTRZY/cx6VQ=_145ebd5e9cc:5ec6:4d1db4d1","vSbjObuspiUUUlHx496XW/WaRBw2NaRdTW1NAiwoLAs=_1460fd7b5c1:28cfb:ac33133c","k3wM4lkt2uyzklIaZG/piLCFwWpRsuSz4luWQLHP0YY=_146067634e0:8aa0:aec60bc9","qXKMwD+H9w7rc42rGNxj3U1BuAKE5TpW1EZAANkzhmk=_145b8ce3a36:89e2:4eb0407d","qXKMwD+H9w7rc42rGNxj3U1BuAKE5TpW1EZAANkzhmk=_1460557338c:71d0:aec60bc9","qXKMwD+H9w7rc42rGNxj3U1BuAKE5TpW1EZAANkzhmk=_145d8468fce:1003:593aa9b2","qXKMwD+H9w7rc42rGNxj3U1BuAKE5TpW1EZAANkzhmk=_145e2cb3a50:2c3:592195db","PSNTZO8gXFUe+cpCZyApw0vEKWPT4b14D6teBEocIAE=_14606fa9138:1a538:ac33133c","1iFkmAfSI/02w17CiU4A7y9Dt9scZdZNh32xpy9B54s=_1461fc9c0ac:55:4ff004ed","Xne8uW/IUiZhV1EuO2ZMzIrc2Ak6NlhGjboZ+Yk0rJ8=_14605b9efb5:7a2b:aec60bc9","qXKMwD+H9w7rc42rGNxj3U1BuAKE5TpW1EZAANkzhmk=_145b9cdf580:544:7f4ba42e","qXKMwD+H9w7rc42rGNxj3U1BuAKE5TpW1EZAANkzhmk=_145d38e07c2:1d41:87ec9d39","PSNTZO8gXFUe+cpCZyApw0vEKWPT4b14D6teBEocIAE=_1460784a8ed:1b669:ac33133c","n2AVTP7fNugY5B4y5BN9tk/UlIVe48DSept9qXpGYUs=_145b7d774d4:73e9:4eb0407d"],"feeds":[{"asOf":1236582000000,"id":"feed/http://feeds.feedburner.com/git-ready"},{"asOf":1372903927976,"id":"feed/http://500hats.com/feed"},{"asOf":1398711706550,"id":"feed/http://feeds.feedburner.com/TechPageOneEntrepreneurs"},{"asOf":1400138498617,"id":"feed/http://www.theverge.com/rss/full.xml"},{"asOf":1400169736188,"id":"feed/http://feeds.feedburner.com/design-milk"},{"asOf":1393442145439,"id":"feed/http://feeds.feedburner.com/codinghorror"},{"asOf":1398787676231,"id":"feed/http://css-tricks.com/feed/"},{"asOf":1399230804585,"id":"feed/http://www.yatzer.com/feed/index.php"},{"asOf":1400271035220,"id":"feed/http://www.engadget.com/rss.xml"},{"asOf":1400151771928,"id":"feed/http://feeds.feedburner.com/Techcrunch"},{"asOf":1399996938490,"id":"feed/http://feeds.feedburner.com/TechPageOneTechnology"}]}'
50
+ http_version:
51
+ recorded_at: Sat, 24 May 2014 20:16:58 GMT
52
+ recorded_with: VCR 2.9.1
@@ -0,0 +1,50 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://sandbox.feedly.com/v3/markers
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"categoryIds":["user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Tech","user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Entreprenuership"],"action":"undoMarkAsRead","type":"categories"}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ Authorization:
15
+ - OAuth _oauth_access_token_
16
+ User-Agent:
17
+ - Faraday v0.9.0
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sat May 17 05:37:56 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '4248'
33
+ X-Feedly-Processing-Time:
34
+ - '290'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - text/plain;charset=UTF-8
39
+ Content-Length:
40
+ - '0'
41
+ Date:
42
+ - Sat, 17 May 2014 12:37:55 GMT
43
+ Server:
44
+ - feedlyServer/1.1
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ http_version:
49
+ recorded_at: Sat, 17 May 2014 12:39:34 GMT
50
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,50 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://sandbox.feedly.com/v3/markers
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"feedIds":["feed/http://feeds.engadget.com/weblogsinc/engadget","feed/http://www.yatzer.com/feed/index.php"],"action":"undoMarkAsRead","type":"feeds"}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ Authorization:
15
+ - OAuth _oauth_access_token_
16
+ User-Agent:
17
+ - Faraday v0.9.0
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sat May 17 05:37:51 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '4248'
33
+ X-Feedly-Processing-Time:
34
+ - '320'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - text/plain;charset=UTF-8
39
+ Content-Length:
40
+ - '0'
41
+ Date:
42
+ - Sat, 17 May 2014 12:37:51 GMT
43
+ Server:
44
+ - feedlyServer/1.1
45
+ body:
46
+ encoding: UTF-8
47
+ string: ''
48
+ http_version:
49
+ recorded_at: Sat, 17 May 2014 12:39:29 GMT
50
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://sandbox.feedly.com/v3/markers/counts?autorefresh=1
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ Authorization:
15
+ - OAuth _oauth_access_token_
16
+ User-Agent:
17
+ - Faraday v0.9.0
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Sun May 18 16:18:12 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '3791'
33
+ X-Feedly-Processing-Time:
34
+ - '19'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - application/json;charset=UTF-8
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Vary:
42
+ - Accept-Encoding
43
+ Date:
44
+ - Sun, 18 May 2014 23:18:12 GMT
45
+ Server:
46
+ - feedlyServer/1.1
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"unreadcounts":[{"id":"feed/http://feeds.feedburner.com/Techcrunch","count":101,"updated":1400454112366},{"id":"feed/http://www.theverge.com/rss/full.xml","count":86,"updated":1400454104440},{"id":"feed/http://feeds.feedburner.com/TechPageOneEntrepreneurs","count":8,"updated":1400248939404},{"id":"feed/http://500hats.com/feed","count":0,"updated":1389127512412},{"id":"feed/http://feeds.feedburner.com/design-milk","count":9,"updated":1400267748576},{"id":"feed/http://www.engadget.com/rss.xml","count":33,"updated":1400452421797},{"id":"feed/http://www.yatzer.com/feed/index.php","count":12,"updated":1400404609153},{"id":"user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/global.all","count":249,"updated":1400454112366},{"id":"user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Design","count":9,"updated":1400267748576},{"id":"user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Kool","count":0,"updated":1389127512412},{"id":"user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Art","count":9,"updated":1400267748576},{"id":"user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/Entreprenuership","count":8,"updated":1400248939404},{"id":"user/96cc52b7-a17f-4ce0-9b38-de1b6f08f156/category/global.uncategorized","count":232,"updated":1400454112366}]}'
50
+ http_version:
51
+ recorded_at: Sun, 18 May 2014 23:19:55 GMT
52
+ recorded_with: VCR 2.9.0
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://sandbox.feedly.com/v3/microsoft/oneNoteAdd
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"entryId":"k3wM4lkt2uyzklIaZG/piLCFwWpRsuSz4luWQLHP0YY=_142814c6526:338b:2190d777"}'
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Content-Type:
13
+ - application/json
14
+ User-Agent:
15
+ - Feedly Ruby Gem 0.1.0
16
+ Authorization:
17
+ - OAuth _oauth_access_token_
18
+ Accept-Encoding:
19
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Last-Modified:
26
+ - Tue May 20 02:07:26 PDT 2014
27
+ Cache-Control:
28
+ - no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0
29
+ Pragma:
30
+ - no-cache
31
+ X-Ratelimit-Count:
32
+ - '2520'
33
+ X-Feedly-Processing-Time:
34
+ - '0'
35
+ X-Feedly-Server:
36
+ - sandbox-he
37
+ Content-Type:
38
+ - application/json;charset=UTF-8
39
+ Vary:
40
+ - Accept-Encoding
41
+ Date:
42
+ - Tue, 20 May 2014 09:07:26 GMT
43
+ Server:
44
+ - feedlyServer/1.1
45
+ Connection:
46
+ - close
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pageUrl":"https://onedrive.live.com/redir.aspx?cid=056dffbbd353c5b2&page=edit&resid=56DFFBBD353C5B2!107&wd=target%28Quick%20Notes.one%7C0ea08ab2-b519-41f7-a979-e97c39dcd840%2FThe%20Disco%20Ball%20Inspired%20Scotch%20Club%20Lighting%20Collection%7Cfb237846-cab2-4ad7-8743-8db223d731e2%2F%29"}'
50
+ http_version:
51
+ recorded_at: Tue, 20 May 2014 09:09:13 GMT
52
+ recorded_with: VCR 2.9.0