Hi,
When looping through the entries I get with the code below, I always get every event (also previous events) and not only the one specified with the start-min and start-max variable. Also when using the first $currUrl variable, I get the entire list of events on my calendar..and that is somewhat strange as it returns the feed with the correct set of days when pasted into the browser address bar. Code: #!/usr/bin/perl use Net::Google::Calendar; use DateTime; use Data::ICal::Entry::Event; $ahead = 50; $now = DateTime->now(time_zone => 'Europe/Oslo'); $later = DateTime->now(time_zone => 'Europe/Oslo') + DateTime::Duration->new( hours => ($ahead*24) ); #$currUrl = "http://www.google.com/calendar/feeds/[EMAIL PROTECTED]/xxxxxxx/full?start-min=".$now."&start-max=".$later; $currUrl = "http://www.google.com/calendar/feeds/[EMAIL PROTECTED]/xxxxxxx/full"; my $cal = Net::Google::Calendar->new( url => $currUrl, start-min => $now, start-max => $later); $cal->login("XX", "XX"); Thanks. --~--~---------~--~----~------------~-------~--~----~ 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://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
