Reputation: 7573
Anyone know the http request in order to find the subscriber count for a subscription? Something similar to http://www.google.com/reader/api/0/unread-count?all=true must exist for subscribers, no?
Upvotes: 1
Views: 686
Reputation: 924
I wanted to do this same thing but from PUBLIC location so i hacked together an API for everyones use... it returns as JSON or JSONP and i dont save any history of feeds that are looked up... but i do have logging to be able to ban abusive ip
Upvotes: 0
Reputation: 4236
This is what Reader uses to fill in the data in the "show details" UI for a particular feeed:
Specifically, you'd want the "subscribers" property in the JSON output. The general format for the "s" parameter is feed/". Note that it requires authentication.
Upvotes: 4