vote up 5 vote down star
18

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?

flag

@GateKiller: I understand the motivation for throwing a "code-request" tag onto this... I also have an open bounty on a question where the only answer is a link to the (broken) API documentation, and it irritates me that i'll end up paying out 300 rep to someone who just Googled my keywords. – Shog9 Feb 24 '09 at 17:28
But, the tag doesn't serve any purpose. Rather, you should add a note to your actual question stating you'd appreciate sample code. – Shog9 Feb 24 '09 at 17:29

2 Answers

vote up 11 vote down check

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:

import urllib
import urllib2

username = 'username@gmail.com'
password = '******'

# Authenticate to obtain SID
auth_url = 'https://www.google.com/accounts/ClientLogin'
auth_req_data = urllib.urlencode({'Email': username,
                                  'Passwd': password})
auth_req = urllib2.Request(auth_url, data=auth_req_data)
auth_resp = urllib2.urlopen(auth_req)
auth_resp_content = auth_resp.read()
auth_resp_dict = dict(x.split('=') for x in auth_resp_content.split('\n') if x)
SID = auth_resp_dict["SID"]

# Create a cookie in the header using the SID 
header = {}
header['Cookie'] = 'Name=SID;SID=%s;Domain=.google.com;Path=/;Expires=160000000000' % SID

reader_base_url = 'http://www.google.com/reader/api/0/unread-count?%s'
reader_req_data = urllib.urlencode({'all': 'true',
                                    'output': 'xml'})
reader_url = reader_base_url % (reader_req_data)
reader_req = urllib2.Request(reader_url, None, header)
reader_resp = urllib2.urlopen(reader_req)
reader_resp_content = reader_resp.read()

print reader_resp_content

And some additional links on the topic:

link|flag
vote up 9 vote down

It is there. Still in Beta though.

link|flag
This question answers the question as it is asked. If there is some reason why the question author does not find it sufficient, perhaps he should edit his question to clarify. – EBGreen Feb 24 '09 at 15:40
1  
A lot of the information on that site is outdated. – Martin Doms Oct 16 at 21:20

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.