通过Google日历API查询时,执行请求失败

我在Windows 7下使用Visual C#Express 2010。过去3年来,我一直在使用这段代码来查询我的Google日历(其中有4个),没有任何问题。 然而,昨天(17/11/14)的代码停止工作。 这里是代码:

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

有没有人有任何想法,为什么代码突然停止工作时,相同的代码工作正常前一天?

非常感谢您的帮助。