For the unofficial Google Reader API, I can get all items for a feed in the Atom format. Are they also available in the JSON format?
Asked
Active
Viewed 1,814 times
1 Answers
5
Google Reader exposes feed data as JSON at URLs of the form http://www.google.com/reader/api/0/stream/contents/feed/*escaped_feed_url*
, e.g. http://www.google.com/reader/api/0/stream/contents/feed/http%3A//blog.stackoverflow.com/feed/.

Mihai Parparita
- 4,236
- 1
- 23
- 30
-
Thanks!! how did you find that? I tried, but it has no "summary" tag, and do you know how to change these - "published" : 1308363855, "timestampUsec" : "1308364078385650", - to Date? How to calculate? thanks – Jackson Tale Jun 18 '11 at 22:22
-
The body of the item is often in the "content" section, so you may want to look for that before you fall back on the summary. The dates are represented as seconds since the epoch (except for timestampUsec, which is in microseconds since the epoch). Your language's date/time library probably has functions for converting epoch timestamps to dates. – Mihai Parparita Jun 20 '11 at 03:43
-
Hey Mihai, any idea if Google are going to block my access if I send a lot of requests? – Devfly Nov 08 '12 at 06:50
-
I tried your recommended solution and it now displays a page saying that "Google Reader has been discountinued". – Kmeixner Mar 10 '15 at 19:47