Questions tagged [google-reader]

Questions about programmatically using Google Reader (questions regarding regular usage should be posted in https://superuser.com/ instead) This may be done either via HTTP requests to the Google Reader unofficial (but publicly available) API; or by using specific Google Reader urls to simplify actions on the website or extend functionality (e.g.: browser add-ons).

This product has been discontinued on July 15, 2013.

official announcement

Questions about programmatically using Google Reader (questions regarding regular usage should be posted in https://superuser.com/ instead)

This may be done either via HTTP requests to the Google Reader unofficial (but publicly available) API; or by using specific Google Reader urls to simplify actions on the website or extend functionality (e.g.: browser add-ons).

It is important to highlight, that even though the API is not an official Google API, in most ways it is very stable and well known (it is used by the official Reader sites and clients) and behaves like a public API in terms of the Google authentication system. There is no official API documentation, but there are some good documentation resources in the web, and even some places where it is possible to get answers from Google developers using this:

186 questions
1
vote
2 answers

Is there a limit for how many subscriptions one can have on google reader or the news pieces they get every day?

Is there a upper bound to how many subscriptions one user can have in their google reader? how about the number of news they poll every day? Google has limits on everything, how about this one?
Max
  • 4,152
  • 4
  • 36
  • 52
1
vote
1 answer

subscribing to Yahoo search feed with google reader?

Is it possible to subscribe to Yahoo search results with google reader through reader api?
Max
  • 4,152
  • 4
  • 36
  • 52
1
vote
1 answer

URL length limit for google reader api

I am using "/reader/api/0/stream/items/ids" API to get the item ids for sources that I want. I have quite a number of sources, so I repeated "s=" parameter to include in the api url. However, google has given me an error of "URL is too long". So…
Jackson Tale
  • 25,428
  • 34
  • 149
  • 271
1
vote
1 answer

Google Reader API: Continuation for stream/items/ids

Is there any way to get continuation for /api/0/stream/items/ids like /api/0/stream/contents/? If no, how can I get next item-ids of a stream? Or is there any way to convert item-id/timestamp to continuation?
Ali Shakiba
  • 20,549
  • 18
  • 61
  • 88
1
vote
1 answer

How can I use AccountManager in Android with Google Account?

I want to use AccountManager in Android, to verify a com.google account. I've already know how to get the account, But I've got several questions, If the account is not in AccountManager, and the account self is under com.google domain, then how…
Davidsun
  • 721
  • 6
  • 13
1
vote
1 answer

How to access a feed with historic items (like in Google Reader) of a given feed url without authentication?

One feature of Google Reader is that it maintains a history of all items of a subscribed feed and you have access to those items when you keep scrolling down the list. In contrast if you visit the original feed from a blog or a news site, the feed…
Rainer Falle
  • 375
  • 1
  • 3
  • 7
1
vote
1 answer

Google Reader API not showing all results

I'm using Google reader API to get all available items for any RSS feed. I use it as follows: http://www.google.com/reader/atom/feed/[RSS FEED LINK]?n=[NUMBER OF ITEMS TO SHOW]&r=o&ot=[UNIX TIME STAMP FOR START DATE] As I understand, this should…
YAM
  • 1,362
  • 2
  • 16
  • 30
1
vote
0 answers

How can we get status (read, shared, starred) for a single feed using Google Reader API

Is there a Google Reader Api to return status for a single item?
user822217
  • 11
  • 1
1
vote
1 answer

Ruby/HTTParty: Timing out when adding feed to Google Reader using its API

I'm attempting to add a subscription to Google Reader, using it's API, however I'm getting the following error: execution expired I've had no problems reading (using 'get') a list of subscriptions or tags. But it times out when I attempt to add a…
greggannicott
  • 885
  • 2
  • 9
  • 22
1
vote
1 answer

Getting blocks of data from Google Reader API

I have built a basic app using the Reader API but I dont want to retrieve all the items at once to save on bandwidth and processing. I start with the first 50, using…
daihovey
  • 3,485
  • 13
  • 66
  • 110
1
vote
1 answer

How can I delete a tag from Google Reader?

So, I am writing some code against Google Reader's "API". I am writing code that deletes all of the sites in a folder/tag. I can delete the sites just fine, but I can't find a way to delete the tag when everything is out of it. So in the end all the…
David
  • 2,173
  • 3
  • 25
  • 36
1
vote
1 answer

Google Reader API PHP library

Advise me Google Reader API PHP Library, please)
Dimmduh
  • 803
  • 1
  • 11
  • 18
1
vote
1 answer

Import feeds from Google Reader

I am making a webapp that uses feeds to get website urls. I want to make it so users can click a button and it will automatically add all of the feeds from their google reader accounts. Is there a way to do this? Thanks in advance for any help.
LunaCodeGirl
  • 5,432
  • 6
  • 30
  • 36
1
vote
1 answer

Google Reader Token Request giving 403 error

I am trying to get the token from google reader for my iPhone project. I am able to get the Authorization but when I request for the token, I get a 403 Forbidden Below is my code implementation. Any help would be appreciated. //The tokenStorer…
iSee
  • 604
  • 1
  • 14
  • 31
1
vote
2 answers

Google Reader API - Mark All As Read

I am trying to write a script which marks all my feed items as read within Google Reader. It should be as simple as posting 4 variables to an API link. However, the only way I can successfully make an HTTP POST to Google without getting a 400 error…