Retrieving Google Reader stats for RSS feed and items

464 Views Asked by At

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?

2

There are 2 best solutions below

1
On BEST ANSWER

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]

0
On