Does Google Reader have an API and if so, how can I get the count of the number of unread posts for a specific user knowing their username and password?
feedback
|
|
This URL will give you a count of unread posts per feed. You can then iterate over the feeds and sum up the counts. http://www.google.com/reader/api/0/unread-count?all=true Here is a minimalist example in Python...parsing the xml/json and summing the counts is left as an exercise for the reader:
And some additional links on the topic: | |||||||||||||
feedback
|
|
It is there. Still in Beta though. | |||||||||||
feedback
|
|
Here is an update to this answer
Google Reader removed SID auth around June, 2010 (I think), using new Auth from ClientLogin is the new way and it's a bit simpler (header is shorter). You will have to add You can read more about the change of authentication method in this thread. | |||
|
feedback
|
|
In the API posted in [1], the "token" field should be "T" | |||||||
feedback
|