使用谷歌API访问谷歌日历

时间:2011-12-29 08:36:14

标签: android google-calendar-api

如何使用Android上的新api访问谷歌日历? 使用GData API我可以编写这样的代码:

CalendarService myService = new CalendarService("CalendarService");
myService.setUserCredentials("example@gmail.com", "yourPassword");
URL feedUrl = new URL("http://www.google.com/calendar/feeds/default/allcalendars/full");
CalendarFeed resultFeed = myService.getFeed(feedUrl, CalendarFeed.class);
Log.d(TAG,"Your calendars:");
for (int i = 0; i < resultFeed.getEntries().size(); i++) {
  CalendarEntry entry = resultFeed.getEntries().get(i);
  Log.d(TAG,entry.getTitle().getPlainText());
}

但我不能在android上使用这样的代码,因为SAX异常。请告诉我如何使用new V3 api以这种方式使用登录名和密码进行授权。

1 个答案:

答案 0 :(得分:1)

您无法使用v3的用户名和密码进行授权,而是使用oAuth2

您需要做的是使用OAuth2获取访问令牌,确保为Google日历设置了范围。将刷新令牌保存在某处,然后就可以访问所有想要的内容