readmill 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/lib/readmill/client.rb +14 -0
  3. data/lib/readmill/client/books.rb +14 -1
  4. data/lib/readmill/client/closing_remarks.rb +22 -0
  5. data/lib/readmill/client/comments.rb +34 -0
  6. data/lib/readmill/client/highlights.rb +52 -0
  7. data/lib/readmill/client/locations.rb +22 -0
  8. data/lib/readmill/client/periods.rb +22 -0
  9. data/lib/readmill/client/readings.rb +77 -0
  10. data/lib/readmill/client/users.rb +33 -0
  11. data/lib/readmill/version.rb +1 -1
  12. data/spec/cassettes/readmill/client/books_book/should_request_a_book_from_readmill.yml +4 -4
  13. data/spec/cassettes/readmill/client/books_book/should_return_a_book.yml +4 -4
  14. data/spec/cassettes/readmill/client/books_book/with_closing_remarks_true_should_request_readers_for_a_book_from_readmill.yml +58 -0
  15. data/spec/cassettes/readmill/client/books_book/with_closing_remarks_true_should_return_an_array_of_users.yml +58 -0
  16. data/spec/cassettes/readmill/client/books_book/with_readers_true_should_request_readers_for_a_book_from_readmill.yml +52 -0
  17. data/spec/cassettes/readmill/client/books_book/with_readers_true_should_return_an_array_of_users.yml +52 -0
  18. data/spec/cassettes/readmill/client/books_books/should_request_all_books_from_readmill.yml +67 -17
  19. data/spec/cassettes/readmill/client/books_books/should_return_an_array_of_books.yml +66 -47
  20. data/spec/cassettes/readmill/client/closing_remarks_closing_remark/should_request_a_closing_remark_from_readmill.yml +54 -0
  21. data/spec/cassettes/readmill/client/closing_remarks_closing_remark/should_return_a_closing_remark.yml +54 -0
  22. data/spec/cassettes/readmill/client/comments_comment/should_request_a_comment_from_readmill.yml +53 -0
  23. data/spec/cassettes/readmill/client/comments_comment/should_return_a_comment.yml +53 -0
  24. data/spec/cassettes/readmill/client/comments_comments/should_request_all_comments_from_readmill.yml +54 -0
  25. data/spec/cassettes/readmill/client/comments_comments/should_return_an_array_of_comments.yml +54 -0
  26. data/spec/cassettes/readmill/client/highlights_highlight/should_request_a_highlight_from_readmill.yml +61 -0
  27. data/spec/cassettes/readmill/client/highlights_highlight/should_return_a_highlight.yml +61 -0
  28. data/spec/cassettes/readmill/client/highlights_highlight/with_comments_true_should_return_an_array_of_comments.yml +54 -0
  29. data/spec/cassettes/readmill/client/highlights_highlight/with_comments_true_should_return_comments_for_the_highlight_from_readmill.yml +54 -0
  30. data/spec/cassettes/readmill/client/highlights_highlights/should_request_all_highlights_from_readmill.yml +182 -0
  31. data/spec/cassettes/readmill/client/highlights_highlights/should_return_an_array_of_highlights.yml +182 -0
  32. data/spec/cassettes/readmill/client/highlights_highlights/with_a_reading_id_should_request_all_highlights_for_the_reading.yml +66 -0
  33. data/spec/cassettes/readmill/client/highlights_highlights/with_a_user_id_should_request_all_highlights_for_the_user.yml +191 -0
  34. data/spec/cassettes/readmill/client/locations_locations/should_request_all_locations_from_readmill.yml +52 -0
  35. data/spec/cassettes/readmill/client/locations_locations/should_return_an_array_of_locations.yml +52 -0
  36. data/spec/cassettes/readmill/client/periods_periods/should_request_all_periods_from_readmill.yml +52 -0
  37. data/spec/cassettes/readmill/client/periods_periods/should_return_an_array_of_periods.yml +52 -0
  38. data/spec/cassettes/readmill/client/readings_reading/should_request_a_reading_from_readmill.yml +54 -0
  39. data/spec/cassettes/readmill/client/readings_reading/should_return_a_reading.yml +54 -0
  40. data/spec/cassettes/readmill/client/readings_reading/with_highlights_true_should_request_highlights_for_the_reading_from_readmill.yml +90 -0
  41. data/spec/cassettes/readmill/client/readings_reading/with_highlights_true_should_return_an_array_of_highlights.yml +90 -0
  42. data/spec/cassettes/readmill/client/readings_reading/with_locations_true_should_request_locations_for_the_reading_from_readmill.yml +52 -0
  43. data/spec/cassettes/readmill/client/readings_reading/with_locations_true_should_return_an_array_of_locations.yml +52 -0
  44. data/spec/cassettes/readmill/client/readings_reading/with_periods_true_and_locations_true_should_raise_an_argument_error.yml +52 -0
  45. data/spec/cassettes/readmill/client/readings_reading/with_periods_true_should_request_periods_for_the_reading_from_readmill.yml +52 -0
  46. data/spec/cassettes/readmill/client/readings_reading/with_periods_true_should_return_an_array_of_periods.yml +52 -0
  47. data/spec/cassettes/readmill/client/readings_readings/should_request_all_readings_from_readmill.yml +85 -0
  48. data/spec/cassettes/readmill/client/readings_readings/should_return_an_array_of_readings.yml +85 -0
  49. data/spec/cassettes/readmill/client/readings_readings/with_a_book_id_should_request_all_readings_for_the_book.yml +54 -0
  50. data/spec/cassettes/readmill/client/readings_readings/with_a_book_id_should_return_an_array_of_readings.yml +54 -0
  51. data/spec/cassettes/readmill/client/readings_readings/with_a_user_id_should_request_all_readings_for_the_user.yml +94 -0
  52. data/spec/cassettes/readmill/client/readings_readings/with_a_user_id_should_return_an_array_of_readings.yml +94 -0
  53. data/spec/cassettes/readmill/client/users_user/should_request_a_user_from_readmill.yml +54 -0
  54. data/spec/cassettes/readmill/client/users_user/should_return_a_user.yml +54 -0
  55. data/spec/cassettes/readmill/client/users_user/with_followers_true_should_request_all_followers_for_a_user.yml +86 -0
  56. data/spec/cassettes/readmill/client/users_user/with_followers_true_should_return_an_array_of_users.yml +86 -0
  57. data/spec/cassettes/readmill/client/users_user/with_followings_true_should_request_all_followings_for_a_user.yml +80 -0
  58. data/spec/cassettes/readmill/client/users_user/with_followings_true_should_return_an_array_of_users.yml +80 -0
  59. data/spec/readmill/client/books_spec.rb +44 -5
  60. data/spec/readmill/client/closing_remarks_spec.rb +19 -0
  61. data/spec/readmill/client/comments_spec.rb +33 -0
  62. data/spec/readmill/client/highlights_spec.rb +69 -0
  63. data/spec/readmill/client/locations_spec.rb +19 -0
  64. data/spec/readmill/client/periods_spec.rb +19 -0
  65. data/spec/readmill/client/readings_spec.rb +127 -0
  66. data/spec/readmill/client/users_spec.rb +57 -0
  67. metadata +108 -1
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/readings/443173/periods
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 05:45:53 GMT
29
+ Etag:
30
+ - '"51dc037277c5844eb1de114db85e1af9"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 30a3086ecf40b0c4490a6876acdf2457
39
+ X-Runtime:
40
+ - '0.052037'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '291'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":null},"items":[{"period":{"id":833450,"reading":{"id":443173},"user":{"id":45146},"started_at":"2013-12-16T04:12:43Z","duration":1500,"progress":0.368301,"identifier":"0DAEE845-E044-491E-B1BD-08A096CBE6EB-1831-000004C9D8C627EF","locations":{"items":[]}}}],"status":200}'
50
+ http_version:
51
+ recorded_at: Mon, 16 Dec 2013 05:45:53 GMT
52
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,85 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/readings
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 04:19:53 GMT
29
+ Etag:
30
+ - '"dd4e69136bb5a208a842bf9ab3da4428"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 5c1255e6db839cec1ba1af1123ba50ce
39
+ X-Runtime:
40
+ - '1.093637'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '28238'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":"https://api.readmill.com/v2/readings?offset=0&order=created_at&to=2013-12-16+04%3A06%3A26+UTC"},"items":[{"reading":{"id":443204,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:19:33Z","started_at":"2013-12-15T21:54:46Z","touched_at":"2013-12-15T21:54:46Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":3322,"title":"Harry
50
+ Potter and the Half-Blood Prince","author":"J.K. Rowling","permalink":"harry-potter-and-the-half-blood-prince","permalink_url":"https://readmill.com/books/harry-potter-and-the-half-blood-prince","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2e6d13e7a07b70325365247e360da8202f616cf6-original.png&width=120","cover_metadata":{"original_width":600,"original_height":920}},"user":{"id":194847,"username":"ravi_fusion","firstname":null,"fullname":"ravi_fusion","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/ravi_fusion"},"permalink_url":"https://readmill.com/ravi_fusion/reads/harry-potter-and-the-half-blood-prince","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443203,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:19:06Z","started_at":"2013-12-16T04:19:06Z","touched_at":"2013-12-16T04:19:06Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":13926,"title":"Night
51
+ and Day","author":"Virginia Woolf","permalink":"night-and-day","permalink_url":"https://readmill.com/books/night-and-day","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fa09b7c51d471b7fc543ebef44441f48f48ac3333-original.png&width=120","cover_metadata":{"original_width":584,"original_height":893}},"user":{"id":149578,"username":"shel2_wilk","firstname":null,"fullname":"shel2_wilk","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/shel2_wilk"},"permalink_url":"https://readmill.com/shel2_wilk/reads/night-and-day","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443201,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:17:20Z","started_at":"2013-12-16T04:17:20Z","touched_at":"2013-12-16T04:17:20Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":14294,"title":"A
52
+ Room of One''s Own","author":"Virginia Woolf","permalink":"a-room-of-ones-own","permalink_url":"https://readmill.com/books/a-room-of-ones-own","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F64f669d8879969087ac4e9672543bae6ae628341-original.png&width=120","cover_metadata":{"original_width":314,"original_height":475}},"user":{"id":211346,"username":"kinhaneck","firstname":"Ver\u00f4nica","fullname":"Ver\u00f4nica
53
+ Vasconcellos Miranda","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/kinhaneck"},"permalink_url":"https://readmill.com/kinhaneck/reads/a-room-of-ones-own","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443199,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:17:12Z","started_at":"2013-12-16T04:17:12Z","touched_at":"2013-12-16T04:17:12Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":222657,"title":"Doing
54
+ Data Science","author":"Rachel Schutt and Cathy O\u2019Neil","permalink":"doing-data-science","permalink_url":"https://readmill.com/books/doing-data-science","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fc271fd76844025fd444f4ec050641d73c9ab54e6-original.png&width=120","cover_metadata":{"original_width":666,"original_height":1000}},"user":{"id":200935,"username":"brad_esser","firstname":"Brad","fullname":"Brad
55
+ Esser","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/brad_esser"},"permalink_url":"https://readmill.com/brad_esser/reads/doing-data-science","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443196,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:15:52Z","started_at":"2013-12-16T04:15:52Z","touched_at":"2013-12-16T04:15:52Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":351937,"title":"BIBLE
56
+ STUDY GUIDES: Lessons for Living (Vol. 1)","author":"Bertram Lim","permalink":"bible-study-guides-lessons-for-living-vol-1","permalink_url":"https://readmill.com/books/bible-study-guides-lessons-for-living-vol-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F0811ef077e010ebd53ff9b46726f3397fa616d2a-original.png&width=120","cover_metadata":{"original_width":659,"original_height":1024}},"user":{"id":210734,"username":"rjbulos","firstname":null,"fullname":"rjbulos","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/rjbulos"},"permalink_url":"https://readmill.com/rjbulos/reads/bible-study-guides-lessons-for-living-vol-1","comments_count":0,"highlights_count":0,"position":0.0690145,"position_updated_at":"2013-12-16T04:19:09Z","entities":{"hashtags":[]}}},{"reading":{"id":443194,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:13:57Z","started_at":"2013-12-16T04:13:57Z","touched_at":"2013-12-16T04:13:57Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360808,"title":"Youtility","author":"Jay
57
+ Baer","permalink":"youtility","permalink_url":"https://readmill.com/books/youtility","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ff33580c63bf8b0d1f4670c5fa2a815bce8ca9a42-original.png&width=120","cover_metadata":{"original_width":794,"original_height":1200}},"user":{"id":46795,"username":"almadjur","firstname":"Alfredo","fullname":"Alfredo
58
+ Madrigal Jurado","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F5ecc94fca7b3c0c5013da104174bc915d8d0be42-original.png&width=50","followers_count":1,"followings_count":2,"permalink_url":"https://readmill.com/almadjur"},"permalink_url":"https://readmill.com/almadjur/reads/youtility","comments_count":0,"highlights_count":0,"position":0.0250255,"position_updated_at":"2013-12-16T04:14:11Z","entities":{"hashtags":[]}}},{"reading":{"id":443193,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:13:49Z","started_at":"2013-12-16T04:13:49Z","touched_at":"2013-12-16T04:18:49Z","ended_at":null,"duration":300,"progress":0.267815,"estimated_time_left":811,"average_period_time":300,"book":{"id":20191,"title":"The
59
+ Pit and the Pendulum","author":"Poe, Edgar Allan","permalink":"the-pit-and-the-pendulum","permalink_url":"https://readmill.com/books/the-pit-and-the-pendulum","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F56b2ce1be7f3d138e307192afbdefe4dbc35b410-original.png&width=120","cover_metadata":{"original_width":510,"original_height":680}},"user":{"id":177638,"username":"ryjohnson","firstname":"Ryan","fullname":"Ryan","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F5c8f64e848f3d364b12a1f78ccb9631069d9e8cf-original.png&width=50","followers_count":1,"followings_count":2,"permalink_url":"https://readmill.com/ryjohnson"},"permalink_url":"https://readmill.com/ryjohnson/reads/the-pit-and-the-pendulum","comments_count":0,"highlights_count":0,"position":0.267815,"position_updated_at":"2013-12-16T04:18:51Z","entities":{"hashtags":[]}}},{"reading":{"id":443192,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:13:08Z","started_at":"2013-12-16T04:13:08Z","touched_at":"2013-12-16T04:18:08Z","ended_at":null,"duration":300,"progress":0.0511524,"estimated_time_left":5700,"average_period_time":300,"book":{"id":346468,"title":"You''re
60
+ Mine, Only Mine","author":"Martha Cecilia","permalink":"youre-mine-only-mine","permalink_url":"https://readmill.com/books/youre-mine-only-mine","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":200487,"username":"trixxiemenes","firstname":null,"fullname":"trixxiemenes","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/trixxiemenes"},"permalink_url":"https://readmill.com/trixxiemenes/reads/youre-mine-only-mine","comments_count":0,"highlights_count":0,"position":0.0511525,"position_updated_at":"2013-12-16T04:18:09Z","entities":{"hashtags":[]}}},{"reading":{"id":443189,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:11:58Z","started_at":"2013-12-16T04:11:58Z","touched_at":"2013-12-16T04:11:58Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360817,"title":"Handy
61
+ Astronomy Answer Book","author":"Charles Liu","permalink":"handy-astronomy-answer-book-1","permalink_url":"https://readmill.com/books/handy-astronomy-answer-book-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":183731,"username":"coyotecane","firstname":"Alan","fullname":"Alan
62
+ Silverman","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F6c23416d725fde668740460245c5f2d11497efab-original.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/coyotecane"},"permalink_url":"https://readmill.com/coyotecane/reads/handy-astronomy-answer-book-1","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443186,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:11:38Z","started_at":"2013-12-16T04:11:38Z","touched_at":"2013-12-16T04:17:12Z","ended_at":null,"duration":300,"progress":0.0369422,"estimated_time_left":7200,"average_period_time":300,"book":{"id":179620,"title":"Waiting
63
+ on Forever","author":"Ashley Wilcox","permalink":"waiting-on-forever","permalink_url":"https://readmill.com/books/waiting-on-forever","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2d6ff0332107e54baaab179ff3986d421d8bc110-original.png&width=120","cover_metadata":{"original_width":450,"original_height":680}},"user":{"id":56084,"username":"xoditzyxoblondexo","firstname":"Julie","fullname":"Julie
64
+ Kampmann","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F4427cd6a216a4d1d5c4fcceace3e2c7918f5b146-original.png&width=50","followers_count":2,"followings_count":1,"permalink_url":"https://readmill.com/xoditzyxoblondexo"},"permalink_url":"https://readmill.com/xoditzyxoblondexo/reads/waiting-on-forever","comments_count":0,"highlights_count":0,"position":0.0380851,"position_updated_at":"2013-12-16T04:17:21Z","entities":{"hashtags":[]}}},{"reading":{"id":443185,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:11:12Z","started_at":"2013-12-16T04:11:12Z","touched_at":"2013-12-16T04:11:12Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360812,"title":"The
65
+ Torah For Dummies","author":"Arthur Kurzweil","permalink":"the-torah-for-dummies","permalink_url":"https://readmill.com/books/the-torah-for-dummies","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":183731,"username":"coyotecane","firstname":"Alan","fullname":"Alan
66
+ Silverman","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F6c23416d725fde668740460245c5f2d11497efab-original.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/coyotecane"},"permalink_url":"https://readmill.com/coyotecane/reads/the-torah-for-dummies","comments_count":0,"highlights_count":0,"position":0.000128866,"position_updated_at":"2013-12-16T04:11:21Z","entities":{"hashtags":[]}}},{"reading":{"id":443183,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:33Z","started_at":"2013-12-16T04:10:33Z","touched_at":"2013-12-16T04:10:33Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":377,"title":"I,
67
+ Robot","author":"Cory Doctorow","permalink":"i-robot","permalink_url":"https://readmill.com/books/i-robot","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F5d6eaaef41cd3833e92037889445c762187dd203-original.png&width=120","cover_metadata":{"original_width":499,"original_height":758}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/i-robot","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443182,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:32Z","started_at":"2013-12-16T04:10:32Z","touched_at":"2013-12-16T04:10:32Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":223185,"title":"The
68
+ Goldfinch","author":"Donna Tartt","permalink":"the-goldfinch","permalink_url":"https://readmill.com/books/the-goldfinch","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ff307bf706721201b4626f4f9c549056bac7cab74-original.png&width=120","cover_metadata":{"original_width":484,"original_height":751}},"user":{"id":210854,"username":"gtmcknight","firstname":"Taylor","fullname":"Taylor
69
+ McKnight","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252Fc80019534c0d9926028aaaf88a9c6268a6c0b1cb-original.png&width=50","followers_count":2,"followings_count":28,"permalink_url":"https://readmill.com/gtmcknight"},"permalink_url":"https://readmill.com/gtmcknight/reads/the-goldfinch","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443181,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:25Z","started_at":"2013-12-16T04:10:25Z","touched_at":"2013-12-16T04:10:25Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":22022,"title":"A
70
+ Journey into the Center of the Earth","author":"Jules Verne","permalink":"a-journey-into-the-center-of-the-earth","permalink_url":"https://readmill.com/books/a-journey-into-the-center-of-the-earth","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F24a67b0b96fef40ce9115c11f04f3322c96dfee5-original.png&width=120","cover_metadata":{"original_width":520,"original_height":800}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/a-journey-into-the-center-of-the-earth","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443180,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:19Z","started_at":"2013-12-16T04:10:19Z","touched_at":"2013-12-16T04:10:19Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360514,"title":"Sandosenang
71
+ Sapatos (A Dozen Pair of Shoes)","author":"Luis P. Gatmaitan, MD and Beth
72
+ Parrocha-Doctolero","permalink":"sandosenang-sapatos-a-dozen-pair-of-shoes","permalink_url":"https://readmill.com/books/sandosenang-sapatos-a-dozen-pair-of-shoes","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":208381,"username":"greys_454","firstname":null,"fullname":"greys_454","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":0,"permalink_url":"https://readmill.com/greys_454"},"permalink_url":"https://readmill.com/greys_454/reads/sandosenang-sapatos-a-dozen-pair-of-shoes","comments_count":0,"highlights_count":0,"position":0.157202,"position_updated_at":"2013-12-16T04:10:34Z","entities":{"hashtags":[]}}},{"reading":{"id":443179,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:08Z","started_at":"2013-12-16T04:10:08Z","touched_at":"2013-12-16T04:10:08Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":667,"title":"Around
73
+ the World in Eighty Days","author":"Jules Verne","permalink":"around-the-world-in-eighty-days","permalink_url":"https://readmill.com/books/around-the-world-in-eighty-days","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F78cf1d30cd9e5b1e237cbd880f7687ed7d8895b1-original.png&width=120","cover_metadata":{"original_width":738,"original_height":1200}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/around-the-world-in-eighty-days","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443178,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:09:57Z","started_at":"2013-12-16T04:09:57Z","touched_at":"2013-12-16T04:09:57Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":496,"title":"The
74
+ Time Machine","author":"H. G. Wells","permalink":"the-time-machine","permalink_url":"https://readmill.com/books/the-time-machine","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F83d9dd9702418c9e3abc62c37d603ee0af5e410e-original.png&width=120","cover_metadata":{"original_width":309,"original_height":517}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/the-time-machine","comments_count":0,"highlights_count":0,"position":0.0,"position_updated_at":"2013-12-16T04:10:08Z","entities":{"hashtags":[]}}},{"reading":{"id":443176,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:08:21Z","started_at":"2013-12-16T04:08:21Z","touched_at":"2013-12-16T04:08:26Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":104734,"title":"Curso
75
+ de Direito Constitucional","author":"Gilmar Ferreira Mendes e Paulo Gustavo
76
+ Gonet Branco","permalink":"curso-de-direito-constitucional","permalink_url":"https://readmill.com/books/curso-de-direito-constitucional","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F6058bd7e7c2202a9a12dbea22b0b6de3b4cae404-original.png&width=120","cover_metadata":{"original_width":503,"original_height":750}},"user":{"id":211343,"username":"elisa_jacobina","firstname":"Elisa","fullname":"Elisa
77
+ Jacobina","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/elisa_jacobina"},"permalink_url":"https://readmill.com/elisa_jacobina/reads/curso-de-direito-constitucional","comments_count":0,"highlights_count":1,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443173,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:43Z","started_at":"2013-12-16T04:07:43Z","touched_at":"2013-12-16T04:12:43Z","ended_at":null,"duration":300,"progress":0.0861162,"estimated_time_left":3033,"average_period_time":300,"book":{"id":269082,"title":"Kiss
78
+ of the Night","author":"Sylvia Day","permalink":"kiss-of-the-night-1","permalink_url":"https://readmill.com/books/kiss-of-the-night-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F4d5deed826e6b739311670ad175ff7029e353b21-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
79
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kiss-of-the-night-1","comments_count":0,"highlights_count":0,"position":0.0861162,"position_updated_at":"2013-12-16T04:12:56Z","entities":{"hashtags":[]}}},{"reading":{"id":443171,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:30Z","started_at":"2013-12-16T04:07:30Z","touched_at":"2013-12-16T04:08:10Z","ended_at":"2013-12-16T04:08:10Z","duration":0,"progress":1.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":308947,"title":"Jab,
80
+ Jab, Jab, Right Hook: How to Tell Your Story in a Noisy Social World","author":"Vaynerchuk,
81
+ Gary","permalink":"jab-jab-jab-right-hook-how-to-tell-your-story-in-a-noisy-social-world","permalink_url":"https://readmill.com/books/jab-jab-jab-right-hook-how-to-tell-your-story-in-a-noisy-social-world","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ff73263ef74e798327de92f6bd5b86e45aadc5266-original.png&width=120","cover_metadata":{"original_width":700,"original_height":867}},"user":{"id":176917,"username":"lamar","firstname":"lamar","fullname":"lamar
82
+ r glenn","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F16adcc1ffa295b0b86d3355379fa313ecfd18c9f-original.png&width=50","followers_count":2,"followings_count":2,"permalink_url":"https://readmill.com/lamar"},"permalink_url":"https://readmill.com/lamar/reads/jab-jab-jab-right-hook-how-to-tell-your-story-in-a-noisy-social-world","comments_count":0,"highlights_count":0,"position":0.0,"position_updated_at":"2013-12-16T04:08:29Z","entities":{"hashtags":[]}}}],"status":200}'
83
+ http_version:
84
+ recorded_at: Mon, 16 Dec 2013 04:19:52 GMT
85
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,85 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/readings
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 04:19:55 GMT
29
+ Etag:
30
+ - '"dd4e69136bb5a208a842bf9ab3da4428"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - d057ea0f61d8d648b0d078f574e31a97
39
+ X-Runtime:
40
+ - '1.193085'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '28238'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":"https://api.readmill.com/v2/readings?offset=0&order=created_at&to=2013-12-16+04%3A06%3A26+UTC"},"items":[{"reading":{"id":443204,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:19:33Z","started_at":"2013-12-15T21:54:46Z","touched_at":"2013-12-15T21:54:46Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":3322,"title":"Harry
50
+ Potter and the Half-Blood Prince","author":"J.K. Rowling","permalink":"harry-potter-and-the-half-blood-prince","permalink_url":"https://readmill.com/books/harry-potter-and-the-half-blood-prince","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2e6d13e7a07b70325365247e360da8202f616cf6-original.png&width=120","cover_metadata":{"original_width":600,"original_height":920}},"user":{"id":194847,"username":"ravi_fusion","firstname":null,"fullname":"ravi_fusion","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/ravi_fusion"},"permalink_url":"https://readmill.com/ravi_fusion/reads/harry-potter-and-the-half-blood-prince","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443203,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:19:06Z","started_at":"2013-12-16T04:19:06Z","touched_at":"2013-12-16T04:19:06Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":13926,"title":"Night
51
+ and Day","author":"Virginia Woolf","permalink":"night-and-day","permalink_url":"https://readmill.com/books/night-and-day","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fa09b7c51d471b7fc543ebef44441f48f48ac3333-original.png&width=120","cover_metadata":{"original_width":584,"original_height":893}},"user":{"id":149578,"username":"shel2_wilk","firstname":null,"fullname":"shel2_wilk","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/shel2_wilk"},"permalink_url":"https://readmill.com/shel2_wilk/reads/night-and-day","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443201,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:17:20Z","started_at":"2013-12-16T04:17:20Z","touched_at":"2013-12-16T04:17:20Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":14294,"title":"A
52
+ Room of One''s Own","author":"Virginia Woolf","permalink":"a-room-of-ones-own","permalink_url":"https://readmill.com/books/a-room-of-ones-own","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F64f669d8879969087ac4e9672543bae6ae628341-original.png&width=120","cover_metadata":{"original_width":314,"original_height":475}},"user":{"id":211346,"username":"kinhaneck","firstname":"Ver\u00f4nica","fullname":"Ver\u00f4nica
53
+ Vasconcellos Miranda","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/kinhaneck"},"permalink_url":"https://readmill.com/kinhaneck/reads/a-room-of-ones-own","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443199,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:17:12Z","started_at":"2013-12-16T04:17:12Z","touched_at":"2013-12-16T04:17:12Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":222657,"title":"Doing
54
+ Data Science","author":"Rachel Schutt and Cathy O\u2019Neil","permalink":"doing-data-science","permalink_url":"https://readmill.com/books/doing-data-science","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fc271fd76844025fd444f4ec050641d73c9ab54e6-original.png&width=120","cover_metadata":{"original_width":666,"original_height":1000}},"user":{"id":200935,"username":"brad_esser","firstname":"Brad","fullname":"Brad
55
+ Esser","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/brad_esser"},"permalink_url":"https://readmill.com/brad_esser/reads/doing-data-science","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443196,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:15:52Z","started_at":"2013-12-16T04:15:52Z","touched_at":"2013-12-16T04:15:52Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":351937,"title":"BIBLE
56
+ STUDY GUIDES: Lessons for Living (Vol. 1)","author":"Bertram Lim","permalink":"bible-study-guides-lessons-for-living-vol-1","permalink_url":"https://readmill.com/books/bible-study-guides-lessons-for-living-vol-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F0811ef077e010ebd53ff9b46726f3397fa616d2a-original.png&width=120","cover_metadata":{"original_width":659,"original_height":1024}},"user":{"id":210734,"username":"rjbulos","firstname":null,"fullname":"rjbulos","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/rjbulos"},"permalink_url":"https://readmill.com/rjbulos/reads/bible-study-guides-lessons-for-living-vol-1","comments_count":0,"highlights_count":0,"position":0.0690145,"position_updated_at":"2013-12-16T04:19:09Z","entities":{"hashtags":[]}}},{"reading":{"id":443194,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:13:57Z","started_at":"2013-12-16T04:13:57Z","touched_at":"2013-12-16T04:13:57Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360808,"title":"Youtility","author":"Jay
57
+ Baer","permalink":"youtility","permalink_url":"https://readmill.com/books/youtility","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ff33580c63bf8b0d1f4670c5fa2a815bce8ca9a42-original.png&width=120","cover_metadata":{"original_width":794,"original_height":1200}},"user":{"id":46795,"username":"almadjur","firstname":"Alfredo","fullname":"Alfredo
58
+ Madrigal Jurado","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F5ecc94fca7b3c0c5013da104174bc915d8d0be42-original.png&width=50","followers_count":1,"followings_count":2,"permalink_url":"https://readmill.com/almadjur"},"permalink_url":"https://readmill.com/almadjur/reads/youtility","comments_count":0,"highlights_count":0,"position":0.0250255,"position_updated_at":"2013-12-16T04:14:11Z","entities":{"hashtags":[]}}},{"reading":{"id":443193,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:13:49Z","started_at":"2013-12-16T04:13:49Z","touched_at":"2013-12-16T04:18:49Z","ended_at":null,"duration":300,"progress":0.267815,"estimated_time_left":811,"average_period_time":300,"book":{"id":20191,"title":"The
59
+ Pit and the Pendulum","author":"Poe, Edgar Allan","permalink":"the-pit-and-the-pendulum","permalink_url":"https://readmill.com/books/the-pit-and-the-pendulum","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F56b2ce1be7f3d138e307192afbdefe4dbc35b410-original.png&width=120","cover_metadata":{"original_width":510,"original_height":680}},"user":{"id":177638,"username":"ryjohnson","firstname":"Ryan","fullname":"Ryan","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F5c8f64e848f3d364b12a1f78ccb9631069d9e8cf-original.png&width=50","followers_count":1,"followings_count":2,"permalink_url":"https://readmill.com/ryjohnson"},"permalink_url":"https://readmill.com/ryjohnson/reads/the-pit-and-the-pendulum","comments_count":0,"highlights_count":0,"position":0.267815,"position_updated_at":"2013-12-16T04:18:51Z","entities":{"hashtags":[]}}},{"reading":{"id":443192,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:13:08Z","started_at":"2013-12-16T04:13:08Z","touched_at":"2013-12-16T04:18:08Z","ended_at":null,"duration":300,"progress":0.0511524,"estimated_time_left":5700,"average_period_time":300,"book":{"id":346468,"title":"You''re
60
+ Mine, Only Mine","author":"Martha Cecilia","permalink":"youre-mine-only-mine","permalink_url":"https://readmill.com/books/youre-mine-only-mine","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":200487,"username":"trixxiemenes","firstname":null,"fullname":"trixxiemenes","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/trixxiemenes"},"permalink_url":"https://readmill.com/trixxiemenes/reads/youre-mine-only-mine","comments_count":0,"highlights_count":0,"position":0.0511525,"position_updated_at":"2013-12-16T04:18:09Z","entities":{"hashtags":[]}}},{"reading":{"id":443189,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:11:58Z","started_at":"2013-12-16T04:11:58Z","touched_at":"2013-12-16T04:11:58Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360817,"title":"Handy
61
+ Astronomy Answer Book","author":"Charles Liu","permalink":"handy-astronomy-answer-book-1","permalink_url":"https://readmill.com/books/handy-astronomy-answer-book-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":183731,"username":"coyotecane","firstname":"Alan","fullname":"Alan
62
+ Silverman","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F6c23416d725fde668740460245c5f2d11497efab-original.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/coyotecane"},"permalink_url":"https://readmill.com/coyotecane/reads/handy-astronomy-answer-book-1","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443186,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:11:38Z","started_at":"2013-12-16T04:11:38Z","touched_at":"2013-12-16T04:17:12Z","ended_at":null,"duration":300,"progress":0.0369422,"estimated_time_left":7200,"average_period_time":300,"book":{"id":179620,"title":"Waiting
63
+ on Forever","author":"Ashley Wilcox","permalink":"waiting-on-forever","permalink_url":"https://readmill.com/books/waiting-on-forever","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2d6ff0332107e54baaab179ff3986d421d8bc110-original.png&width=120","cover_metadata":{"original_width":450,"original_height":680}},"user":{"id":56084,"username":"xoditzyxoblondexo","firstname":"Julie","fullname":"Julie
64
+ Kampmann","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F4427cd6a216a4d1d5c4fcceace3e2c7918f5b146-original.png&width=50","followers_count":2,"followings_count":1,"permalink_url":"https://readmill.com/xoditzyxoblondexo"},"permalink_url":"https://readmill.com/xoditzyxoblondexo/reads/waiting-on-forever","comments_count":0,"highlights_count":0,"position":0.0380851,"position_updated_at":"2013-12-16T04:17:21Z","entities":{"hashtags":[]}}},{"reading":{"id":443185,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:11:12Z","started_at":"2013-12-16T04:11:12Z","touched_at":"2013-12-16T04:11:12Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360812,"title":"The
65
+ Torah For Dummies","author":"Arthur Kurzweil","permalink":"the-torah-for-dummies","permalink_url":"https://readmill.com/books/the-torah-for-dummies","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":183731,"username":"coyotecane","firstname":"Alan","fullname":"Alan
66
+ Silverman","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F6c23416d725fde668740460245c5f2d11497efab-original.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/coyotecane"},"permalink_url":"https://readmill.com/coyotecane/reads/the-torah-for-dummies","comments_count":0,"highlights_count":0,"position":0.000128866,"position_updated_at":"2013-12-16T04:11:21Z","entities":{"hashtags":[]}}},{"reading":{"id":443183,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:33Z","started_at":"2013-12-16T04:10:33Z","touched_at":"2013-12-16T04:10:33Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":377,"title":"I,
67
+ Robot","author":"Cory Doctorow","permalink":"i-robot","permalink_url":"https://readmill.com/books/i-robot","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F5d6eaaef41cd3833e92037889445c762187dd203-original.png&width=120","cover_metadata":{"original_width":499,"original_height":758}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/i-robot","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443182,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:32Z","started_at":"2013-12-16T04:10:32Z","touched_at":"2013-12-16T04:10:32Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":223185,"title":"The
68
+ Goldfinch","author":"Donna Tartt","permalink":"the-goldfinch","permalink_url":"https://readmill.com/books/the-goldfinch","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ff307bf706721201b4626f4f9c549056bac7cab74-original.png&width=120","cover_metadata":{"original_width":484,"original_height":751}},"user":{"id":210854,"username":"gtmcknight","firstname":"Taylor","fullname":"Taylor
69
+ McKnight","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252Fc80019534c0d9926028aaaf88a9c6268a6c0b1cb-original.png&width=50","followers_count":2,"followings_count":28,"permalink_url":"https://readmill.com/gtmcknight"},"permalink_url":"https://readmill.com/gtmcknight/reads/the-goldfinch","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443181,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:25Z","started_at":"2013-12-16T04:10:25Z","touched_at":"2013-12-16T04:10:25Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":22022,"title":"A
70
+ Journey into the Center of the Earth","author":"Jules Verne","permalink":"a-journey-into-the-center-of-the-earth","permalink_url":"https://readmill.com/books/a-journey-into-the-center-of-the-earth","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F24a67b0b96fef40ce9115c11f04f3322c96dfee5-original.png&width=120","cover_metadata":{"original_width":520,"original_height":800}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/a-journey-into-the-center-of-the-earth","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443180,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:19Z","started_at":"2013-12-16T04:10:19Z","touched_at":"2013-12-16T04:10:19Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":360514,"title":"Sandosenang
71
+ Sapatos (A Dozen Pair of Shoes)","author":"Luis P. Gatmaitan, MD and Beth
72
+ Parrocha-Doctolero","permalink":"sandosenang-sapatos-a-dozen-pair-of-shoes","permalink_url":"https://readmill.com/books/sandosenang-sapatos-a-dozen-pair-of-shoes","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-cover-original-a8cdd3ce01730b6af1039cff21184295.png&width=120","cover_metadata":{"original_width":1200,"original_height":1800}},"user":{"id":208381,"username":"greys_454","firstname":null,"fullname":"greys_454","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":0,"permalink_url":"https://readmill.com/greys_454"},"permalink_url":"https://readmill.com/greys_454/reads/sandosenang-sapatos-a-dozen-pair-of-shoes","comments_count":0,"highlights_count":0,"position":0.157202,"position_updated_at":"2013-12-16T04:10:34Z","entities":{"hashtags":[]}}},{"reading":{"id":443179,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:10:08Z","started_at":"2013-12-16T04:10:08Z","touched_at":"2013-12-16T04:10:08Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":667,"title":"Around
73
+ the World in Eighty Days","author":"Jules Verne","permalink":"around-the-world-in-eighty-days","permalink_url":"https://readmill.com/books/around-the-world-in-eighty-days","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F78cf1d30cd9e5b1e237cbd880f7687ed7d8895b1-original.png&width=120","cover_metadata":{"original_width":738,"original_height":1200}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/around-the-world-in-eighty-days","comments_count":0,"highlights_count":0,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443178,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:09:57Z","started_at":"2013-12-16T04:09:57Z","touched_at":"2013-12-16T04:09:57Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":496,"title":"The
74
+ Time Machine","author":"H. G. Wells","permalink":"the-time-machine","permalink_url":"https://readmill.com/books/the-time-machine","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F83d9dd9702418c9e3abc62c37d603ee0af5e410e-original.png&width=120","cover_metadata":{"original_width":309,"original_height":517}},"user":{"id":104300,"username":"carson_barry1","firstname":null,"fullname":"carson_barry1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/carson_barry1"},"permalink_url":"https://readmill.com/carson_barry1/reads/the-time-machine","comments_count":0,"highlights_count":0,"position":0.0,"position_updated_at":"2013-12-16T04:10:08Z","entities":{"hashtags":[]}}},{"reading":{"id":443176,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:08:21Z","started_at":"2013-12-16T04:08:21Z","touched_at":"2013-12-16T04:08:26Z","ended_at":null,"duration":0,"progress":0.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":104734,"title":"Curso
75
+ de Direito Constitucional","author":"Gilmar Ferreira Mendes e Paulo Gustavo
76
+ Gonet Branco","permalink":"curso-de-direito-constitucional","permalink_url":"https://readmill.com/books/curso-de-direito-constitucional","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F6058bd7e7c2202a9a12dbea22b0b6de3b4cae404-original.png&width=120","cover_metadata":{"original_width":503,"original_height":750}},"user":{"id":211343,"username":"elisa_jacobina","firstname":"Elisa","fullname":"Elisa
77
+ Jacobina","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/elisa_jacobina"},"permalink_url":"https://readmill.com/elisa_jacobina/reads/curso-de-direito-constitucional","comments_count":0,"highlights_count":1,"position":null,"position_updated_at":null,"entities":{"hashtags":[]}}},{"reading":{"id":443173,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:43Z","started_at":"2013-12-16T04:07:43Z","touched_at":"2013-12-16T04:12:43Z","ended_at":null,"duration":300,"progress":0.0861162,"estimated_time_left":3033,"average_period_time":300,"book":{"id":269082,"title":"Kiss
78
+ of the Night","author":"Sylvia Day","permalink":"kiss-of-the-night-1","permalink_url":"https://readmill.com/books/kiss-of-the-night-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F4d5deed826e6b739311670ad175ff7029e353b21-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
79
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kiss-of-the-night-1","comments_count":0,"highlights_count":0,"position":0.0861162,"position_updated_at":"2013-12-16T04:12:56Z","entities":{"hashtags":[]}}},{"reading":{"id":443171,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:30Z","started_at":"2013-12-16T04:07:30Z","touched_at":"2013-12-16T04:08:10Z","ended_at":"2013-12-16T04:08:10Z","duration":0,"progress":1.0,"estimated_time_left":null,"average_period_time":0,"book":{"id":308947,"title":"Jab,
80
+ Jab, Jab, Right Hook: How to Tell Your Story in a Noisy Social World","author":"Vaynerchuk,
81
+ Gary","permalink":"jab-jab-jab-right-hook-how-to-tell-your-story-in-a-noisy-social-world","permalink_url":"https://readmill.com/books/jab-jab-jab-right-hook-how-to-tell-your-story-in-a-noisy-social-world","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ff73263ef74e798327de92f6bd5b86e45aadc5266-original.png&width=120","cover_metadata":{"original_width":700,"original_height":867}},"user":{"id":176917,"username":"lamar","firstname":"lamar","fullname":"lamar
82
+ r glenn","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F16adcc1ffa295b0b86d3355379fa313ecfd18c9f-original.png&width=50","followers_count":2,"followings_count":2,"permalink_url":"https://readmill.com/lamar"},"permalink_url":"https://readmill.com/lamar/reads/jab-jab-jab-right-hook-how-to-tell-your-story-in-a-noisy-social-world","comments_count":0,"highlights_count":0,"position":0.0,"position_updated_at":"2013-12-16T04:08:29Z","entities":{"hashtags":[]}}}],"status":200}'
83
+ http_version:
84
+ recorded_at: Mon, 16 Dec 2013 04:19:54 GMT
85
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/books/269082/readings
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 04:19:56 GMT
29
+ Etag:
30
+ - '"4ab2b780c24718cd9560a84b2c5a48b1"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 5a507f16c71e33a15bc9a44b96687aef
39
+ X-Runtime:
40
+ - '0.064948'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '1424'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":null},"items":[{"reading":{"id":443173,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:43Z","started_at":"2013-12-16T04:07:43Z","touched_at":"2013-12-16T04:12:43Z","ended_at":null,"duration":300,"progress":0.0861162,"estimated_time_left":3033,"average_period_time":300,"book":{"id":269082,"title":"Kiss
50
+ of the Night","author":"Sylvia Day","permalink":"kiss-of-the-night-1","permalink_url":"https://readmill.com/books/kiss-of-the-night-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F4d5deed826e6b739311670ad175ff7029e353b21-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
51
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kiss-of-the-night-1","comments_count":0,"highlights_count":0,"position":0.0861162,"position_updated_at":"2013-12-16T04:12:56Z","entities":{"hashtags":[]}}}],"status":200}'
52
+ http_version:
53
+ recorded_at: Mon, 16 Dec 2013 04:19:55 GMT
54
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/books/269082/readings
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 16:46:15 GMT
29
+ Etag:
30
+ - '"19895207205b09df414d8cb64d8bb8b4"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 9787aef326b50cc15d9b29a96611fb0f
39
+ X-Runtime:
40
+ - '0.264671'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '1424'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":null},"items":[{"reading":{"id":443173,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:43Z","started_at":"2013-12-16T04:07:43Z","touched_at":"2013-12-16T04:12:43Z","ended_at":null,"duration":1500,"progress":0.368301,"estimated_time_left":2554,"average_period_time":1500,"book":{"id":269082,"title":"Kiss
50
+ of the Night","author":"Sylvia Day","permalink":"kiss-of-the-night-1","permalink_url":"https://readmill.com/books/kiss-of-the-night-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F4d5deed826e6b739311670ad175ff7029e353b21-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
51
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kiss-of-the-night-1","comments_count":0,"highlights_count":0,"position":0.411258,"position_updated_at":"2013-12-16T05:18:14Z","entities":{"hashtags":[]}}}],"status":200}'
52
+ http_version:
53
+ recorded_at: Mon, 16 Dec 2013 16:46:15 GMT
54
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,94 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/users/45146/readings
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 04:19:57 GMT
29
+ Etag:
30
+ - '"c4a0aba07cc1c177d558a68eeb49493b"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 1fc0b8fbd593a6d55b66ce812954fa96
39
+ X-Runtime:
40
+ - '0.767081'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '29059'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":"https://api.readmill.com/v2/users/45146/readings?offset=0&order=created_at&to=2013-11-30+17%3A01%3A38+UTC&user_id=45146"},"items":[{"reading":{"id":443173,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:43Z","started_at":"2013-12-16T04:07:43Z","touched_at":"2013-12-16T04:12:43Z","ended_at":null,"duration":300,"progress":0.0861162,"estimated_time_left":3033,"average_period_time":300,"book":{"id":269082,"title":"Kiss
50
+ of the Night","author":"Sylvia Day","permalink":"kiss-of-the-night-1","permalink_url":"https://readmill.com/books/kiss-of-the-night-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F4d5deed826e6b739311670ad175ff7029e353b21-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
51
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kiss-of-the-night-1","comments_count":0,"highlights_count":0,"position":0.0861162,"position_updated_at":"2013-12-16T04:12:56Z","entities":{"hashtags":[]}}},{"reading":{"id":442930,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T01:52:44Z","started_at":"2013-12-16T01:52:44Z","touched_at":"2013-12-16T03:45:48Z","ended_at":"2013-12-16T03:45:48Z","duration":600,"progress":1.0,"estimated_time_left":0,"average_period_time":300,"book":{"id":306427,"title":"KinkyOrgasm.PDF","author":"Elemental
52
+ Alchemy","permalink":"kinkyorgasm-dot-pdf","permalink_url":"https://readmill.com/books/kinkyorgasm-dot-pdf","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F02043f0315308525e37d89a93a509ba4b67bf10c-original.png&width=120","cover_metadata":{"original_width":461,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
53
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kinkyorgasm-dot-pdf","comments_count":0,"highlights_count":0,"position":0.758201,"position_updated_at":"2013-12-16T03:41:54Z","entities":{"hashtags":[]}}},{"reading":{"id":441373,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-15T15:06:13Z","started_at":"2013-12-15T15:06:13Z","touched_at":"2013-12-16T01:45:21Z","ended_at":"2013-12-16T01:45:21Z","duration":7800,"progress":1.0,"estimated_time_left":0,"average_period_time":1950,"book":{"id":306428,"title":"kingston
54
+ katherine, lynn lafleur, jan springer","author":"holiday heat (anthology)
55
+ (ec)( pdf)","permalink":"kingston-katherine-lynn-lafleur-jan-springer","permalink_url":"https://readmill.com/books/kingston-katherine-lynn-lafleur-jan-springer","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fd031ec3b1ae40e98456a17311cb187801e517e17-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
56
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kingston-katherine-lynn-lafleur-jan-springer","comments_count":0,"highlights_count":0,"position":0.0046324,"position_updated_at":"2013-12-16T03:50:15Z","entities":{"hashtags":[]}}},{"reading":{"id":439142,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-14T20:24:29Z","started_at":"2013-12-14T20:24:29Z","touched_at":"2013-12-15T15:06:03Z","ended_at":"2013-12-15T15:06:03Z","duration":11700,"progress":1.0,"estimated_time_left":0,"average_period_time":2925,"book":{"id":306426,"title":"King,
57
+ Sherri L - Moon Lust 1,2,3 & 4 - Moon Lust (Ellora''s Cave)","author":"Sherri
58
+ L King","permalink":"king-sherri-l-moon-lust-1-2-3-and-4-moon-lust-elloras-cave","permalink_url":"https://readmill.com/books/king-sherri-l-moon-lust-1-2-3-and-4-moon-lust-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fb4d129dc96e5bc9c5a5b0b7d0d961e0c1c52fcbc-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
59
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/king-sherri-l-moon-lust-1-2-3-and-4-moon-lust-elloras-cave","comments_count":0,"highlights_count":0,"position":0.99606,"position_updated_at":"2013-12-15T15:27:48Z","entities":{"hashtags":[]}}},{"reading":{"id":437665,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-14T06:57:54Z","started_at":"2013-12-14T06:57:54Z","touched_at":"2013-12-14T20:24:19Z","ended_at":"2013-12-14T20:24:19Z","duration":5400,"progress":1.0,"estimated_time_left":0,"average_period_time":1080,"book":{"id":306425,"title":"Kimberlee''s
60
+ Keeper","author":"Reese Gabriel","permalink":"kimberlees-keeper","permalink_url":"https://readmill.com/books/kimberlees-keeper","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2f45fd3a477e794796d09710ef691c2751b403e6-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
61
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kimberlees-keeper","comments_count":0,"highlights_count":0,"position":0.995036,"position_updated_at":"2013-12-14T20:24:27Z","entities":{"hashtags":[]}}},{"reading":{"id":421809,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-08T18:15:45Z","started_at":"2013-12-08T18:15:45Z","touched_at":"2013-12-14T06:57:38Z","ended_at":"2013-12-14T06:57:38Z","duration":12600,"progress":1.0,"estimated_time_left":0,"average_period_time":1145,"book":{"id":306424,"title":"Kim
62
+ Lawrence, Julia James and Robyn Donald - Secret Baby Bundle","author":"secret
63
+ baby bundle (hq-ant)","permalink":"kim-lawrence-julia-james-and-robyn-donald-secret-baby-bundle","permalink_url":"https://readmill.com/books/kim-lawrence-julia-james-and-robyn-donald-secret-baby-bundle","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F16a34f1eba1306b4043ec5487a94a696f08b1124-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
64
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kim-lawrence-julia-james-and-robyn-donald-secret-baby-bundle","comments_count":0,"highlights_count":0,"position":0.999994,"position_updated_at":"2013-12-14T06:57:47Z","entities":{"hashtags":[]}}},{"reading":{"id":421712,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-08T17:46:04Z","started_at":"2013-12-08T17:46:04Z","touched_at":"2013-12-08T18:15:36Z","ended_at":"2013-12-08T18:15:36Z","duration":600,"progress":1.0,"estimated_time_left":0,"average_period_time":600,"book":{"id":306423,"title":"Kelly,
65
+ Sahara - Sizzle (Ellora''s Cave)","author":"rachel lewis","permalink":"kelly-sahara-sizzle-elloras-cave","permalink_url":"https://readmill.com/books/kelly-sahara-sizzle-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2a2c6bffaa0485be1cca007e09218a4253ee8286-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
66
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kelly-sahara-sizzle-elloras-cave","comments_count":0,"highlights_count":0,"position":0.998969,"position_updated_at":"2013-12-08T18:15:45Z","entities":{"hashtags":[]}}},{"reading":{"id":416034,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T23:56:27Z","started_at":"2013-12-07T23:56:27Z","touched_at":"2013-12-08T17:45:47Z","ended_at":"2013-12-08T17:45:47Z","duration":7800,"progress":1.0,"estimated_time_left":0,"average_period_time":1950,"book":{"id":306421,"title":"kelly,
67
+ sahara","author":"a kink in her tails (ellora''s cave) htm","permalink":"kelly-sahara","permalink_url":"https://readmill.com/books/kelly-sahara","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fb440dba6f8d1e3b797fb51936158efd628b1e96c-original.png&width=120","cover_metadata":{"original_width":435,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
68
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kelly-sahara","comments_count":0,"highlights_count":0,"position":0.999564,"position_updated_at":"2013-12-08T18:03:49Z","entities":{"hashtags":[]}}},{"reading":{"id":416010,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T23:48:13Z","started_at":"2013-12-07T23:48:13Z","touched_at":"2013-12-07T23:56:15Z","ended_at":"2013-12-07T23:56:15Z","duration":300,"progress":1.0,"estimated_time_left":0,"average_period_time":300,"book":{"id":306422,"title":"KH_YuleWolf","author":"Unknown","permalink":"kh-yulewolf","permalink_url":"https://readmill.com/books/kh-yulewolf","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F9f81df0218bc115693f2e39e30fd1c8dc7155813-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
69
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kh-yulewolf","comments_count":0,"highlights_count":0,"position":0.994187,"position_updated_at":"2013-12-07T23:56:09Z","entities":{"hashtags":[]}}},{"reading":{"id":415547,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T20:42:57Z","started_at":"2013-12-07T20:42:57Z","touched_at":"2013-12-07T23:46:41Z","ended_at":"2013-12-07T23:46:41Z","duration":10500,"progress":1.0,"estimated_time_left":0,"average_period_time":10500,"book":{"id":306420,"title":"Kay
70
+ Hooper - Hiding in the Shadows.txt","author":"hiding in the shadows","permalink":"kay-hooper-hiding-in-the-shadows-dot-txt","permalink_url":"https://readmill.com/books/kay-hooper-hiding-in-the-shadows-dot-txt","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fd3e3b03dcdc9e6d97e4e455dd764ad0f502882c4-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
71
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kay-hooper-hiding-in-the-shadows-dot-txt","comments_count":0,"highlights_count":0,"position":0.999301,"position_updated_at":"2013-12-07T23:46:49Z","entities":{"hashtags":[]}}},{"reading":{"id":415526,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T20:36:55Z","started_at":"2013-12-07T20:36:55Z","touched_at":"2013-12-07T20:42:49Z","ended_at":"2013-12-07T20:42:49Z","duration":300,"progress":1.0,"estimated_time_left":0,"average_period_time":300,"book":{"id":306419,"title":"KD_IslandDreamin","author":"island
72
+ dreamin (changeling) [m-m-f]","permalink":"kd-islanddreamin","permalink_url":"https://readmill.com/books/kd-islanddreamin","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fbccab4b608754a5bd8413a1ea562d3d7ed5b983e-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
73
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kd-islanddreamin","comments_count":0,"highlights_count":0,"position":0.9833,"position_updated_at":"2013-12-07T20:42:54Z","entities":{"hashtags":[]}}},{"reading":{"id":415134,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T17:16:44Z","started_at":"2013-12-07T17:16:44Z","touched_at":"2013-12-07T20:36:40Z","ended_at":"2013-12-07T20:36:40Z","duration":5400,"progress":1.0,"estimated_time_left":0,"average_period_time":2700,"book":{"id":306417,"title":"Kay
74
+ Hooper - Hagen 3 - Zach''s Law.txt","author":"zach''s law","permalink":"kay-hooper-hagen-3-zachs-law-dot-txt","permalink_url":"https://readmill.com/books/kay-hooper-hagen-3-zachs-law-dot-txt","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F149f246a867d579970fdcaca1a04a8d3cf589a82-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
75
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kay-hooper-hagen-3-zachs-law-dot-txt","comments_count":0,"highlights_count":0,"position":0.999311,"position_updated_at":"2013-12-07T20:36:51Z","entities":{"hashtags":[]}}},{"reading":{"id":415050,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T16:42:39Z","started_at":"2013-12-07T16:42:39Z","touched_at":"2013-12-07T17:16:33Z","ended_at":"2013-12-07T17:16:33Z","duration":1500,"progress":1.0,"estimated_time_left":0,"average_period_time":1500,"book":{"id":306416,"title":"Kathryn
76
+ Lively, writing as Leigh Ellwood","author":"kathryn","permalink":"kathryn-lively-writing-as-leigh-ellwood","permalink_url":"https://readmill.com/books/kathryn-lively-writing-as-leigh-ellwood","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2c54e41f6798ea91a9abd2bfe3e97f0aa20b68e1-original.png&width=120","cover_metadata":{"original_width":385,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
77
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kathryn-lively-writing-as-leigh-ellwood","comments_count":0,"highlights_count":0,"position":0.964389,"position_updated_at":"2013-12-07T17:16:44Z","entities":{"hashtags":[]}}},{"reading":{"id":412237,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-06T18:29:55Z","started_at":"2013-12-06T18:29:55Z","touched_at":"2013-12-07T00:53:10Z","ended_at":"2013-12-07T00:53:10Z","duration":6300,"progress":1.0,"estimated_time_left":0,"average_period_time":3150,"book":{"id":306418,"title":"kate
78
+ hill","author":"captive stallion (ellora''s cave)(2)","permalink":"kate-hill","permalink_url":"https://readmill.com/books/kate-hill","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fdfcde494938bb16f3c335d1e82116bf118ca2fde-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
79
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-hill","comments_count":0,"highlights_count":0,"position":0.999086,"position_updated_at":"2013-12-07T00:53:24Z","entities":{"hashtags":[]}}},{"reading":{"id":409427,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-05T19:16:40Z","started_at":"2013-12-05T19:16:40Z","touched_at":"2013-12-06T18:29:40Z","ended_at":"2013-12-06T18:29:40Z","duration":9900,"progress":1.0,"estimated_time_left":0,"average_period_time":2475,"book":{"id":306415,"title":"Kate
80
+ Hill - Ancient Blood 6 - Darkness Therein (Ellora''s Cave)","author":"James","permalink":"kate-hill-ancient-blood-6-darkness-therein-elloras-cave","permalink_url":"https://readmill.com/books/kate-hill-ancient-blood-6-darkness-therein-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F7ed6e064c958de4568c8e625cf32e6f2ace3528e-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
81
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-hill-ancient-blood-6-darkness-therein-elloras-cave","comments_count":0,"highlights_count":0,"position":0.99997,"position_updated_at":"2013-12-06T23:50:55Z","entities":{"hashtags":[]}}},{"reading":{"id":401725,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-03T17:22:18Z","started_at":"2013-12-03T17:22:18Z","touched_at":"2013-12-05T19:16:19Z","ended_at":"2013-12-05T19:16:19Z","duration":10800,"progress":1.0,"estimated_time_left":0,"average_period_time":1542,"book":{"id":306414,"title":"Kate
82
+ Hill - Ancient Blood 3 - Deep Red (Ellora''s Cave)","author":"(ellora''s cave)","permalink":"kate-hill-ancient-blood-3-deep-red-elloras-cave","permalink_url":"https://readmill.com/books/kate-hill-ancient-blood-3-deep-red-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fafb50838ad8f4cacaea4b60026d89856d27ce40e-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
83
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-hill-ancient-blood-3-deep-red-elloras-cave","comments_count":0,"highlights_count":0,"position":0.9991,"position_updated_at":"2013-12-05T19:16:28Z","entities":{"hashtags":[]}}},{"reading":{"id":398829,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-02T18:00:34Z","started_at":"2013-12-02T18:00:34Z","touched_at":"2013-12-03T17:21:53Z","ended_at":"2013-12-03T17:21:53Z","duration":7800,"progress":1.0,"estimated_time_left":0,"average_period_time":1950,"book":{"id":306413,"title":"Kate
84
+ Douglas, Lacy Danes, Morgan Hawke - Sexy Beast III","author":"Unknown","permalink":"kate-douglas-lacy-danes-morgan-hawke-sexy-beast-iii","permalink_url":"https://readmill.com/books/kate-douglas-lacy-danes-morgan-hawke-sexy-beast-iii","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F1f39c0371b559f3b045010e68e4f8216ec3249c4-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
85
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-douglas-lacy-danes-morgan-hawke-sexy-beast-iii","comments_count":0,"highlights_count":0,"position":0.994939,"position_updated_at":"2013-12-03T17:56:42Z","entities":{"hashtags":[]}}},{"reading":{"id":398798,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-02T17:42:34Z","started_at":"2013-12-02T17:42:34Z","touched_at":"2013-12-02T18:00:19Z","ended_at":"2013-12-02T18:00:19Z","duration":900,"progress":1.0,"estimated_time_left":0,"average_period_time":900,"book":{"id":306412,"title":"kate
86
+ douglas","author":"just a little magic","permalink":"kate-douglas","permalink_url":"https://readmill.com/books/kate-douglas","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ffed8e127589135cef39a4c206226723dbf3a5d41-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
87
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-douglas","comments_count":0,"highlights_count":0,"position":0.997247,"position_updated_at":"2013-12-02T18:00:32Z","entities":{"hashtags":[]}}},{"reading":{"id":397636,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-02T05:14:00Z","started_at":"2013-12-02T05:14:00Z","touched_at":"2013-12-02T17:42:19Z","ended_at":"2013-12-02T17:42:19Z","duration":3600,"progress":1.0,"estimated_time_left":0,"average_period_time":720,"book":{"id":306411,"title":"KAS_Hoosier3","author":"things
88
+ that go grr (cp)","permalink":"kas-hoosier3","permalink_url":"https://readmill.com/books/kas-hoosier3","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F83b5e246cb5d0ed7359e0c3703c807bcc591dd91-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
89
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kas-hoosier3","comments_count":0,"highlights_count":0,"position":0.997074,"position_updated_at":"2013-12-09T14:36:03Z","entities":{"hashtags":[]}}},{"reading":{"id":394633,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-01T06:57:18Z","started_at":"2013-12-01T06:57:18Z","touched_at":"2013-12-02T05:27:41Z","ended_at":"2013-12-02T05:27:41Z","duration":22800,"progress":1.0,"estimated_time_left":0,"average_period_time":3800,"book":{"id":81767,"title":"Black
90
+ Dagger Brotherhood 11 - Lover at Last","author":"J.R. Ward","permalink":"black-dagger-brotherhood-11-lover-at-last","permalink_url":"https://readmill.com/books/black-dagger-brotherhood-11-lover-at-last","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F86e39e671eb5e0e7bc2e18db65f3e5b517296048-original.png&width=120","cover_metadata":{"original_width":665,"original_height":1000}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
91
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/black-dagger-brotherhood-11-lover-at-last","comments_count":0,"highlights_count":0,"position":0.999158,"position_updated_at":"2013-12-08T16:27:46Z","entities":{"hashtags":[]}}}],"status":200}'
92
+ http_version:
93
+ recorded_at: Mon, 16 Dec 2013 04:19:57 GMT
94
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,94 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/users/45146/readings
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 16:46:19 GMT
29
+ Etag:
30
+ - '"c067adcbb5432cb7d50ae5f83da4814e"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 782961062a716104256ab8fccb48dad9
39
+ X-Runtime:
40
+ - '3.278277'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '29058'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":"https://api.readmill.com/v2/users/45146/readings?offset=0&order=created_at&to=2013-11-30+17%3A01%3A38+UTC&user_id=45146"},"items":[{"reading":{"id":443173,"state":"reading","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T04:07:43Z","started_at":"2013-12-16T04:07:43Z","touched_at":"2013-12-16T04:12:43Z","ended_at":null,"duration":1500,"progress":0.368301,"estimated_time_left":2554,"average_period_time":1500,"book":{"id":269082,"title":"Kiss
50
+ of the Night","author":"Sylvia Day","permalink":"kiss-of-the-night-1","permalink_url":"https://readmill.com/books/kiss-of-the-night-1","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F4d5deed826e6b739311670ad175ff7029e353b21-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
51
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kiss-of-the-night-1","comments_count":0,"highlights_count":0,"position":0.411258,"position_updated_at":"2013-12-16T05:18:14Z","entities":{"hashtags":[]}}},{"reading":{"id":442930,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-16T01:52:44Z","started_at":"2013-12-16T01:52:44Z","touched_at":"2013-12-16T03:45:48Z","ended_at":"2013-12-16T03:45:48Z","duration":600,"progress":1.0,"estimated_time_left":0,"average_period_time":300,"book":{"id":306427,"title":"KinkyOrgasm.PDF","author":"Elemental
52
+ Alchemy","permalink":"kinkyorgasm-dot-pdf","permalink_url":"https://readmill.com/books/kinkyorgasm-dot-pdf","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F02043f0315308525e37d89a93a509ba4b67bf10c-original.png&width=120","cover_metadata":{"original_width":461,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
53
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kinkyorgasm-dot-pdf","comments_count":0,"highlights_count":0,"position":0.99962,"position_updated_at":"2013-12-16T04:29:34Z","entities":{"hashtags":[]}}},{"reading":{"id":441373,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-15T15:06:13Z","started_at":"2013-12-15T15:06:13Z","touched_at":"2013-12-16T01:45:21Z","ended_at":"2013-12-16T01:45:21Z","duration":7800,"progress":1.0,"estimated_time_left":0,"average_period_time":1950,"book":{"id":306428,"title":"kingston
54
+ katherine, lynn lafleur, jan springer","author":"holiday heat (anthology)
55
+ (ec)( pdf)","permalink":"kingston-katherine-lynn-lafleur-jan-springer","permalink_url":"https://readmill.com/books/kingston-katherine-lynn-lafleur-jan-springer","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fd031ec3b1ae40e98456a17311cb187801e517e17-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
56
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kingston-katherine-lynn-lafleur-jan-springer","comments_count":0,"highlights_count":0,"position":0.0046324,"position_updated_at":"2013-12-16T03:50:15Z","entities":{"hashtags":[]}}},{"reading":{"id":439142,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-14T20:24:29Z","started_at":"2013-12-14T20:24:29Z","touched_at":"2013-12-15T15:06:03Z","ended_at":"2013-12-15T15:06:03Z","duration":11700,"progress":1.0,"estimated_time_left":0,"average_period_time":2925,"book":{"id":306426,"title":"King,
57
+ Sherri L - Moon Lust 1,2,3 & 4 - Moon Lust (Ellora''s Cave)","author":"Sherri
58
+ L King","permalink":"king-sherri-l-moon-lust-1-2-3-and-4-moon-lust-elloras-cave","permalink_url":"https://readmill.com/books/king-sherri-l-moon-lust-1-2-3-and-4-moon-lust-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fb4d129dc96e5bc9c5a5b0b7d0d961e0c1c52fcbc-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
59
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/king-sherri-l-moon-lust-1-2-3-and-4-moon-lust-elloras-cave","comments_count":0,"highlights_count":0,"position":0.99606,"position_updated_at":"2013-12-15T15:27:48Z","entities":{"hashtags":[]}}},{"reading":{"id":437665,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-14T06:57:54Z","started_at":"2013-12-14T06:57:54Z","touched_at":"2013-12-14T20:24:19Z","ended_at":"2013-12-14T20:24:19Z","duration":5400,"progress":1.0,"estimated_time_left":0,"average_period_time":1080,"book":{"id":306425,"title":"Kimberlee''s
60
+ Keeper","author":"Reese Gabriel","permalink":"kimberlees-keeper","permalink_url":"https://readmill.com/books/kimberlees-keeper","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2f45fd3a477e794796d09710ef691c2751b403e6-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
61
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kimberlees-keeper","comments_count":0,"highlights_count":0,"position":0.995036,"position_updated_at":"2013-12-14T20:24:27Z","entities":{"hashtags":[]}}},{"reading":{"id":421809,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-08T18:15:45Z","started_at":"2013-12-08T18:15:45Z","touched_at":"2013-12-14T06:57:38Z","ended_at":"2013-12-14T06:57:38Z","duration":12600,"progress":1.0,"estimated_time_left":0,"average_period_time":1145,"book":{"id":306424,"title":"Kim
62
+ Lawrence, Julia James and Robyn Donald - Secret Baby Bundle","author":"secret
63
+ baby bundle (hq-ant)","permalink":"kim-lawrence-julia-james-and-robyn-donald-secret-baby-bundle","permalink_url":"https://readmill.com/books/kim-lawrence-julia-james-and-robyn-donald-secret-baby-bundle","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F16a34f1eba1306b4043ec5487a94a696f08b1124-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
64
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kim-lawrence-julia-james-and-robyn-donald-secret-baby-bundle","comments_count":0,"highlights_count":0,"position":0.999994,"position_updated_at":"2013-12-14T06:57:47Z","entities":{"hashtags":[]}}},{"reading":{"id":421712,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-08T17:46:04Z","started_at":"2013-12-08T17:46:04Z","touched_at":"2013-12-08T18:15:36Z","ended_at":"2013-12-08T18:15:36Z","duration":600,"progress":1.0,"estimated_time_left":0,"average_period_time":600,"book":{"id":306423,"title":"Kelly,
65
+ Sahara - Sizzle (Ellora''s Cave)","author":"rachel lewis","permalink":"kelly-sahara-sizzle-elloras-cave","permalink_url":"https://readmill.com/books/kelly-sahara-sizzle-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2a2c6bffaa0485be1cca007e09218a4253ee8286-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
66
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kelly-sahara-sizzle-elloras-cave","comments_count":0,"highlights_count":0,"position":0.998969,"position_updated_at":"2013-12-08T18:15:45Z","entities":{"hashtags":[]}}},{"reading":{"id":416034,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T23:56:27Z","started_at":"2013-12-07T23:56:27Z","touched_at":"2013-12-08T17:45:47Z","ended_at":"2013-12-08T17:45:47Z","duration":7800,"progress":1.0,"estimated_time_left":0,"average_period_time":1950,"book":{"id":306421,"title":"kelly,
67
+ sahara","author":"a kink in her tails (ellora''s cave) htm","permalink":"kelly-sahara","permalink_url":"https://readmill.com/books/kelly-sahara","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fb440dba6f8d1e3b797fb51936158efd628b1e96c-original.png&width=120","cover_metadata":{"original_width":435,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
68
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kelly-sahara","comments_count":0,"highlights_count":0,"position":0.999564,"position_updated_at":"2013-12-08T18:03:49Z","entities":{"hashtags":[]}}},{"reading":{"id":416010,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T23:48:13Z","started_at":"2013-12-07T23:48:13Z","touched_at":"2013-12-07T23:56:15Z","ended_at":"2013-12-07T23:56:15Z","duration":300,"progress":1.0,"estimated_time_left":0,"average_period_time":300,"book":{"id":306422,"title":"KH_YuleWolf","author":"Unknown","permalink":"kh-yulewolf","permalink_url":"https://readmill.com/books/kh-yulewolf","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F9f81df0218bc115693f2e39e30fd1c8dc7155813-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
69
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kh-yulewolf","comments_count":0,"highlights_count":0,"position":0.994187,"position_updated_at":"2013-12-07T23:56:09Z","entities":{"hashtags":[]}}},{"reading":{"id":415547,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T20:42:57Z","started_at":"2013-12-07T20:42:57Z","touched_at":"2013-12-07T23:46:41Z","ended_at":"2013-12-07T23:46:41Z","duration":10500,"progress":1.0,"estimated_time_left":0,"average_period_time":10500,"book":{"id":306420,"title":"Kay
70
+ Hooper - Hiding in the Shadows.txt","author":"hiding in the shadows","permalink":"kay-hooper-hiding-in-the-shadows-dot-txt","permalink_url":"https://readmill.com/books/kay-hooper-hiding-in-the-shadows-dot-txt","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fd3e3b03dcdc9e6d97e4e455dd764ad0f502882c4-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
71
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kay-hooper-hiding-in-the-shadows-dot-txt","comments_count":0,"highlights_count":0,"position":0.999301,"position_updated_at":"2013-12-07T23:46:49Z","entities":{"hashtags":[]}}},{"reading":{"id":415526,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T20:36:55Z","started_at":"2013-12-07T20:36:55Z","touched_at":"2013-12-07T20:42:49Z","ended_at":"2013-12-07T20:42:49Z","duration":300,"progress":1.0,"estimated_time_left":0,"average_period_time":300,"book":{"id":306419,"title":"KD_IslandDreamin","author":"island
72
+ dreamin (changeling) [m-m-f]","permalink":"kd-islanddreamin","permalink_url":"https://readmill.com/books/kd-islanddreamin","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fbccab4b608754a5bd8413a1ea562d3d7ed5b983e-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
73
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kd-islanddreamin","comments_count":0,"highlights_count":0,"position":0.9833,"position_updated_at":"2013-12-07T20:42:54Z","entities":{"hashtags":[]}}},{"reading":{"id":415134,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T17:16:44Z","started_at":"2013-12-07T17:16:44Z","touched_at":"2013-12-07T20:36:40Z","ended_at":"2013-12-07T20:36:40Z","duration":5400,"progress":1.0,"estimated_time_left":0,"average_period_time":2700,"book":{"id":306417,"title":"Kay
74
+ Hooper - Hagen 3 - Zach''s Law.txt","author":"zach''s law","permalink":"kay-hooper-hagen-3-zachs-law-dot-txt","permalink_url":"https://readmill.com/books/kay-hooper-hagen-3-zachs-law-dot-txt","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F149f246a867d579970fdcaca1a04a8d3cf589a82-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
75
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kay-hooper-hagen-3-zachs-law-dot-txt","comments_count":0,"highlights_count":0,"position":0.999311,"position_updated_at":"2013-12-07T20:36:51Z","entities":{"hashtags":[]}}},{"reading":{"id":415050,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-07T16:42:39Z","started_at":"2013-12-07T16:42:39Z","touched_at":"2013-12-07T17:16:33Z","ended_at":"2013-12-07T17:16:33Z","duration":1500,"progress":1.0,"estimated_time_left":0,"average_period_time":1500,"book":{"id":306416,"title":"Kathryn
76
+ Lively, writing as Leigh Ellwood","author":"kathryn","permalink":"kathryn-lively-writing-as-leigh-ellwood","permalink_url":"https://readmill.com/books/kathryn-lively-writing-as-leigh-ellwood","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F2c54e41f6798ea91a9abd2bfe3e97f0aa20b68e1-original.png&width=120","cover_metadata":{"original_width":385,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
77
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kathryn-lively-writing-as-leigh-ellwood","comments_count":0,"highlights_count":0,"position":0.964389,"position_updated_at":"2013-12-07T17:16:44Z","entities":{"hashtags":[]}}},{"reading":{"id":412237,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-06T18:29:55Z","started_at":"2013-12-06T18:29:55Z","touched_at":"2013-12-07T00:53:10Z","ended_at":"2013-12-07T00:53:10Z","duration":6300,"progress":1.0,"estimated_time_left":0,"average_period_time":3150,"book":{"id":306418,"title":"kate
78
+ hill","author":"captive stallion (ellora''s cave)(2)","permalink":"kate-hill","permalink_url":"https://readmill.com/books/kate-hill","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fdfcde494938bb16f3c335d1e82116bf118ca2fde-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
79
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-hill","comments_count":0,"highlights_count":0,"position":0.999086,"position_updated_at":"2013-12-07T00:53:24Z","entities":{"hashtags":[]}}},{"reading":{"id":409427,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-05T19:16:40Z","started_at":"2013-12-05T19:16:40Z","touched_at":"2013-12-06T18:29:40Z","ended_at":"2013-12-06T18:29:40Z","duration":9900,"progress":1.0,"estimated_time_left":0,"average_period_time":2475,"book":{"id":306415,"title":"Kate
80
+ Hill - Ancient Blood 6 - Darkness Therein (Ellora''s Cave)","author":"James","permalink":"kate-hill-ancient-blood-6-darkness-therein-elloras-cave","permalink_url":"https://readmill.com/books/kate-hill-ancient-blood-6-darkness-therein-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F7ed6e064c958de4568c8e625cf32e6f2ace3528e-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
81
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-hill-ancient-blood-6-darkness-therein-elloras-cave","comments_count":0,"highlights_count":0,"position":0.99997,"position_updated_at":"2013-12-06T23:50:55Z","entities":{"hashtags":[]}}},{"reading":{"id":401725,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-03T17:22:18Z","started_at":"2013-12-03T17:22:18Z","touched_at":"2013-12-05T19:16:19Z","ended_at":"2013-12-05T19:16:19Z","duration":10800,"progress":1.0,"estimated_time_left":0,"average_period_time":1542,"book":{"id":306414,"title":"Kate
82
+ Hill - Ancient Blood 3 - Deep Red (Ellora''s Cave)","author":"(ellora''s cave)","permalink":"kate-hill-ancient-blood-3-deep-red-elloras-cave","permalink_url":"https://readmill.com/books/kate-hill-ancient-blood-3-deep-red-elloras-cave","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Fafb50838ad8f4cacaea4b60026d89856d27ce40e-original.png&width=120","cover_metadata":{"original_width":462,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
83
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-hill-ancient-blood-3-deep-red-elloras-cave","comments_count":0,"highlights_count":0,"position":0.9991,"position_updated_at":"2013-12-05T19:16:28Z","entities":{"hashtags":[]}}},{"reading":{"id":398829,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-02T18:00:34Z","started_at":"2013-12-02T18:00:34Z","touched_at":"2013-12-03T17:21:53Z","ended_at":"2013-12-03T17:21:53Z","duration":7800,"progress":1.0,"estimated_time_left":0,"average_period_time":1950,"book":{"id":306413,"title":"Kate
84
+ Douglas, Lacy Danes, Morgan Hawke - Sexy Beast III","author":"Unknown","permalink":"kate-douglas-lacy-danes-morgan-hawke-sexy-beast-iii","permalink_url":"https://readmill.com/books/kate-douglas-lacy-danes-morgan-hawke-sexy-beast-iii","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F1f39c0371b559f3b045010e68e4f8216ec3249c4-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
85
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-douglas-lacy-danes-morgan-hawke-sexy-beast-iii","comments_count":0,"highlights_count":0,"position":0.994939,"position_updated_at":"2013-12-03T17:56:42Z","entities":{"hashtags":[]}}},{"reading":{"id":398798,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-02T17:42:34Z","started_at":"2013-12-02T17:42:34Z","touched_at":"2013-12-02T18:00:19Z","ended_at":"2013-12-02T18:00:19Z","duration":900,"progress":1.0,"estimated_time_left":0,"average_period_time":900,"book":{"id":306412,"title":"kate
86
+ douglas","author":"just a little magic","permalink":"kate-douglas","permalink_url":"https://readmill.com/books/kate-douglas","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252Ffed8e127589135cef39a4c206226723dbf3a5d41-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
87
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kate-douglas","comments_count":0,"highlights_count":0,"position":0.997247,"position_updated_at":"2013-12-02T18:00:32Z","entities":{"hashtags":[]}}},{"reading":{"id":397636,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-02T05:14:00Z","started_at":"2013-12-02T05:14:00Z","touched_at":"2013-12-02T17:42:19Z","ended_at":"2013-12-02T17:42:19Z","duration":3600,"progress":1.0,"estimated_time_left":0,"average_period_time":720,"book":{"id":306411,"title":"KAS_Hoosier3","author":"things
88
+ that go grr (cp)","permalink":"kas-hoosier3","permalink_url":"https://readmill.com/books/kas-hoosier3","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F83b5e246cb5d0ed7359e0c3703c807bcc591dd91-original.png&width=120","cover_metadata":{"original_width":476,"original_height":616}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
89
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/kas-hoosier3","comments_count":0,"highlights_count":0,"position":0.997074,"position_updated_at":"2013-12-09T14:36:03Z","entities":{"hashtags":[]}}},{"reading":{"id":394633,"state":"finished","private":false,"recommended":false,"closing_remark":null,"created_at":"2013-12-01T06:57:18Z","started_at":"2013-12-01T06:57:18Z","touched_at":"2013-12-02T05:27:41Z","ended_at":"2013-12-02T05:27:41Z","duration":22800,"progress":1.0,"estimated_time_left":0,"average_period_time":3800,"book":{"id":81767,"title":"Black
90
+ Dagger Brotherhood 11 - Lover at Last","author":"J.R. Ward","permalink":"black-dagger-brotherhood-11-lover-at-last","permalink_url":"https://readmill.com/books/black-dagger-brotherhood-11-lover-at-last","cover_url":"https://d26cmntuippvfl.cloudfront.net/?action=shrink-w&format=png&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Fcovers%252F86e39e671eb5e0e7bc2e18db65f3e5b517296048-original.png&width=120","cover_metadata":{"original_width":665,"original_height":1000}},"user":{"id":45146,"username":"peckjo","firstname":"Joanna","fullname":"Joanna
91
+ Peck","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/peckjo"},"permalink_url":"https://readmill.com/peckjo/reads/black-dagger-brotherhood-11-lover-at-last","comments_count":0,"highlights_count":0,"position":0.999158,"position_updated_at":"2013-12-08T16:27:46Z","entities":{"hashtags":[]}}}],"status":200}'
92
+ http_version:
93
+ recorded_at: Mon, 16 Dec 2013 16:46:20 GMT
94
+ recorded_with: VCR 2.8.0