Hi,
I have developed and published an open source Java API for Google Reader.
It's here on github <https://github.com/shakiba/readr>. Usage is like:
// scribe oauth service
OAuthService oauth = new
ServiceBuilder().provider(GoogleApi.class).apiKey(key).apiSecret(secret).bu ild();
// oauth connection
OAuthSribeConnection oauthConn = new OAuthSribeConnection(oauth, new
Token(accToken, accSecret));
StreamIdFeed cnn_top =
StreamId.feed("http://rss.cnn.com/rss/cnn_topstories.rss");
Api0Stream stream = new
StreamContent(cnn_top).psStream.setNumber(2).execute(oauthConn);
// that's it.
I had originally developed it for a project but then removed Google Reader
interactions, so I decided to share it.
Any idea? Any interest? :)