Hi
i use java to call the daily time i create it in google calendar in this
code :

 CalendarQuery q = new CalendarQuery(feedUrl);
q.setStringCustomParameter("singleevents", "true");
CalendarEventFeed myResultsFeed = myService.query(q,
CalendarEventFeed.class);
   System.out.println(daily+"test");

       if(myResultsFeed.getEntries().size() > 0) {

             List<CalendarEventEntry> firstMatchEntry
=myResultsFeed.getEntries();
              for (CalendarEventEntry e :firstMatchEntry) {
                  System.out.println("2"+e.getTitle().getPlainText());
                if(e.getTitle().getPlainText().equals(daily)){
            List<When> my= e.getTimes();
            setStart(my.get(0).getStartTime().toString(),daily);
            setEnd(my.get(0).getEndTime().toString(),daily);
                    System.out.println("3"+e.getTitle().getPlainText());
            }
              }

but it give me only the last calendar with 25 result for the last daily in
for loop i need to call the start and end for all   daily calendar i create
it in calendar

-- 
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" 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://code.google.com/apis/calendar/community/forum.html

Reply via email to