New Google Calendar API是否提供任何方法,以便我可以使用他/她的电子邮件地址搜索任何用户公共日历。
答案 0 :(得分:0)
答案可以在谷歌日历的一个文档中找到 - http://code.google.com/apis/calendar/data/1.0/developers_guide_js.html
var myService;
var feedUrl = "https://www.google.com/calendar/feeds/liz@gmail.com/public/full";
function setupMyService() {
myService = new google.gdata.calendar.CalendarService('exampleCo-exampleApp-1');
}
function getMyFeed() {
setupMyService();
myService.getEventsFeed(feedUrl, handleMyFeed, handleError);
}
此外,还有一些线程讨论从公共日历中获取提要的相同问题。
1)http://www.google.com/support/forum/p/apps-apis/thread?tid=5f8c3bf4b9836bd1&hl=en
2)http://www.google.com/support/forum/p/apps-apis/thread?tid=2e8b8003b1aa5fd9&hl=en