Reader doesn't have an official API. Check out what some external developers have built: http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI
<http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI>Eric On Sat, May 2, 2009 at 2:45 PM, Thufir <[email protected]> wrote: > > Is there anything analogous to: > > > > public class CalendarTest { > > public static void main(String[] args) { > CalendarService myService = new CalendarService("exampleCo- > exampleApp-1.0"); > myService.setUserCredentials("[email protected]", "pa$$word"); > > URL feedUrl = new URL("http://www.google.com/calendar/feeds/ > default/allcalendars/full"); > CalendarFeed resultFeed = myService.getFeed(feedUrl, > CalendarFeed.class); > > System.out.println("Your calendars:"); > System.out.println(); > > for (int i = 0; i < resultFeed.getEntries().size(); i++) { > CalendarEntry entry = resultFeed.getEntries().get(i); > System.out.println("\t" + entry.getTitle().getPlainText()); > } > > } > } > > http://code.google.com/apis/gdata/articles/java_client_lib.html#helloworld > > > > for Google Reader? > > > > thanks, > > Thufir > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Data Protocol" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
