chris
chris

Reputation: 7573

Google Reader API - get subscribers

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

Answers (2)

Carter Cole
Carter Cole

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

Mihai Parparita
Mihai Parparita

Reputation: 4236

This is what Reader uses to fill in the data in the "show details" UI for a particular feeed:

http://www.google.com/reader/api/0/stream/details?s=feed/https://blog.stackoverflow.com/feed/&output=json&fetchTrends=false

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

Related Questions