google-reader-api

alternatives to accessing google reader with oauth?

I'm really new to this oauth stuff. I want to access a user's google reader liked items feed. This blog says that oauth doesn't work (yet) with google reader. The working way seems to be to get the user's google credentials (email, password) directly, and login directly to google. This also gives me access to the rest of their services....

Google Reader API - feed/[FEEDURL]/ is coming back as Not found

There is one feed I'm subscribed to which always turns up as NOT FOUND when I try to use the API. I return an array of Dictionaries, containing 3 objects. The first in the list represents the user himself, like so: { FeedID = "user/MY_UNIQUE_NUMBER/state/com.google/reading-list"; Timestamp = 1273448807271463; Unread = 59; ...

OAuth with Google Reader API using Objective C

I'm using the gdata OAuth controllers to get an OAuth token and then signing my requests as instructed. [auth authorizeRequest:myNSURLMutableRequest] It works great for GET requests but POSTs are failing with 401 errors. I knew I wouldn't be able to remain blissfully ignorant of the OAuth magic. The Google Reader API requires paramet...

[Google reader api ] how to set ot paramter? (part of https://www.google.com/reader/api/0/stream/contents/)

this paramter it's wried, i look all request/response when google reader start, still can't find any clue! some guy says use feed's firstitemmsec / 1000, but it's not the correct way. help!!! ...

Google Reader Authentication problem

Google Reader API Seems expecting something different for authentication today! About a week ago, I downloaded this, and everything is working and I try to port that to java. For my code, it is working perfectly (with the help on your examples) until today. I stack tracing everything and I found out that suddenly the google reader is no...

get Unread Count of Google Reader using Javascript(jQuery)

i'm trying to get the unread count of my google reader using javascript. tried the following: var unreadURL = "http://www.google.com/reader/api/0/unread-count?all=true"; $.ajax({ url: unreadURL, success: function (data) { console.log(data); } }); but im getting a 401. i think i have to authenticate or something...

Google Reader API request token, get 400:Bad Request

this Android code worked fine before, but i'm having problems for some reason. here is the request i'm trying to make: https://www.google.com/reader/api/0/token i'm getting 400:Bad Request as a response, and i'm not sure why. isn't this the correct URL for requesting a token? the auth token is being passed as a header in all requests...

HTTP Response 411 Length Required, Http Client 4.0.1 Android

i'm sending an http request to the google reader api and getting an unusual response code. following the documentation, i've requested an auth code and included it in the header of every request. after performing the login, and getting an auth code, i tried accessing this url, which is part of the documentation: http://www.google.com/...

Google Reader - > create tweets, push to mysql database

Hi All, I need to be able to create tweets from shared items on google reader (like reader2twitter does) and then push them for storage in a MySQL database. I know that the shared feed from reader is an atom feed, but beyond that, not even sure where to start. Can someone please point me to some resources, or tips on how I would eve...

Working (no 401 Client Error) Unofficial Google Api Reader Client

Is there a working client (in any language, preferably in ruby) that can currently retrieve subscriptions (starred, liked, tags are a bonus) from, still the unofficial, Google Reader API? I've tried both this and this, but they seem unable to make simple requests, such as http://www.google.com/reader/api/0/subscription/list, which works...

Is there a documented Google Reader API yet?

In late 2005, Niall Kennedy blogged about Google Reader’s API: http://www.niallkennedy.com/blog/2005/12/google-reader-api.html He mentioned that a couple of guys at Google suggested to him that the API might be made official within a couple of weeks. Has the API ever been officially and publicly documented by Google? ...

Counting Likes and shared times in google reader public profile

We've collected a list of google reader profiles of our members and now I want to make a hot list board and show the most shared and the most liked items to be shared with our members. I've checked a couple of unofficial google reader APIs but I did not find anything related to the like or sharing. do you know how can I count the num...

Define RSS feed encoding

I am trying to process RSS feed using Google Reader API, but the issue is that even if feed encoding is UTF-8 it is returned in an unreadable format. resp.contentType = "text/xml" resp.characterEncoding = "UTF-8" URL url = new URL("http://www.google.com/reader/public/atom/feed/" + rss); BufferedReader reader = new BufferedReader(new I...

Using Google Reader API and OAuth in iPhone app

I want to make an app that uses on the Google Reader API. But I'm finding out that there isn't an offical API for it - is there a problem using the unofficial API, in terms of App Store guidelines/approval? Would other apps (Reeder, etc) use this? Also what is the best method for logging in? Is OAuth the preffered method? Is using Janra...

Native Google Reader iPhone Application

I am currently in the process of building a native Google Reader iPhone application similar to the successful application "Reeder for iPhone", however, with a full Twitter client inbuilt as well. I have finished the Twitter client and am now struggling to start the Google Reader client. I've browsed through multiple documents and have t...

Using JSON Framework on iPhone - HELP!

Currently I am using the following code to parse the JSON link sent. This is how I also send a GET call to the Google Reader API for an upcoming iPhone application of mine. - (NSArray *)subscriptionList { if(!cookies && [cookies count] == 0) { [self requestSession]; } NSString * url = @"http://www.google.com/reader/api/0/subscripti...

Does google reader api have method return each oldest entry's timestamp of feed?

Does google reader api have method return each oldest entry's timestamp of feed? method "unread-count" just return newest timestamp. mehtod "subscriptions" just return oldest timestamp for entry what is not unread. ...

Problem getting codeigniter library for google reader to work when trying to log in and get feed data

I'm trying to getting this http://www.forgottenexpanse.com/projects/ci_reader CodeIgniter library for interacting with Google Reader to work. When following the examples on the page, this works fine: $this->load->library('reader'); $shared_items = $this->reader->shared_items('12006118737470781753'); foreach ($shared_items['items'] as ...