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