views:

106

answers:

1

I would like to programmatically retrieve Google Reader's feed stats for my own site's RSS feed. In particular, I'd like to get the "liked" count, to incorporate it into scoring feed items.

Any idea how to do this?

+1  A: 

You can get stats (such as subscribercount) using the following URL:

http://www.google.com/reader/api/0/stream/details?s=feed/[your feed url here]

You can get likes for your feed items using the following URL ():

http://www.google.com/reader/atom/feed/[your feed url here]

hakksor
Thanks! Just what I was looking for! Any idea how I can retrieve this without being logged in? If not, I'll probably be able to figure something out.
i-g