|
Hi,
I still get error "401 Authorization required at site_perl/5.10.1/Net/Google/Calendar.pm
line 577" even though I supplied a $magic URL that I tested readable inside Firefox, and
also supplied username password
Did I do something wrong or the auth mechanisms at Google changed?
######
my $magic = 'http://www.google.com/calendar/feeds/xxxxxxxxxxxxxxxxxxx%40group.calendar.google.com/p
+rivate-xxxxxxxxxxxxxxxx/basic';
print $magic;
print "\n";
my $cal = Net::Google::Calendar->new( url => $magic);
$cal->login('myusername', 'mypassword');
for ($cal->get_calendars) {
print $_->title;
print "\n";
}
|