Is there anything analogous to:


public class CalendarTest {

    public static void main(String[] args) {
        CalendarService myService = new CalendarService("exampleCo-
exampleApp-1.0");
        myService.setUserCredentials("r...@gmail.com", "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 google-help-dataapi@googlegroups.com
To unsubscribe from this group, send email to 
google-help-dataapi+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to