我在Windows 7下使用Visual C#Express 2010.我在过去3年中一直使用此代码查询我的Google日历(其中有4个)没有任何问题。但是,昨天(2014年11月17日)该代码停止了工作。这是代码:
try
{
//fill up combobox with all calendars
CalendarService myService = new CalendarService("exampleCo-exampleApp-1");
myService.setUserCredentials(email, password);
CalendarQuery query = new CalendarQuery();
query.Uri = new Uri("https://www.google.com/calendar/feeds/default/owncalendars/full");
CalendarFeed resultFeed = (CalendarFeed) myService.Query(query); //code crashes
}
catch (GDataRequestException e)
{
MessageBox.Show(e.Message + "\r\nCould not read from Google Calendar");
}
使用此错误消息进行查询时代码崩溃:
执行请求失败:https://www.google.com/calendar/feeds/default/owncalendars/full
当前一天相同的代码工作正常时,有没有人知道为什么代码突然停止工作?
非常感谢您的帮助。