3 messages in com.googlegroups.google-calendar-help-dataapiCreating Calendar??
FromSent OnAttachments
Neum...@gmail.com26 Nov 2007 15:02 
Ray Baxter26 Nov 2007 16:22 
Austin (Google)26 Nov 2007 18:03 
Subject:Creating Calendar??
From:Neum...@gmail.com (Neum@gmail.com)
Date:11/26/2007 03:02:07 PM
List:com.googlegroups.google-calendar-help-dataapi

so i used the template from here http://code.google.com/apis/calendar/developers_guide_dotnet.html#CreatingCalendars

and made this

CalendarEntry calendar = new CalendarEntry(); calendar.Title.Text = name; calendar.Color = "#A32929"; calendar.Hidden = false; calendar.TimeZone = "America/Denver"; calendar.Location = new Where("", "", "South Jordan"); calendar.Selected = true; Uri postUri = new Uri("http://www.google.com/calendar/ feeds/default/owncalendars/full"); service.Insert(postUri, calendar);

however every time it gets to the service.Insert, it throws an exception of GDataRequestException and says not enough Quota to create calender. This was working last week, so i'm at a lost.

the credentials are being set when the class is constructed, and as far as i can tell nothing has been changed. I'm at a loss, thanks for