0
新しいGoogleカレンダーAPIは、電子メールアドレスを使用してすべてのユーザーの公開カレンダーを検索できる方法を提供していますか?Googleカレンダー検索
新しいGoogleカレンダーAPIは、電子メールアドレスを使用してすべてのユーザーの公開カレンダーを検索できる方法を提供していますか?Googleカレンダー検索
答えはGoogleカレンダーのドキュメントのいずれかで利用可能です。またhttp://code.google.com/apis/calendar/data/1.0/developers_guide_js.html
var myService;
var feedUrl = "https://www.google.com/calendar/feeds/[email protected]/public/full";
function setupMyService() {
myService = new google.gdata.calendar.CalendarService('exampleCo-exampleApp-1');
}
function getMyFeed() {
setupMyService();
myService.getEventsFeed(feedUrl, handleMyFeed, handleError);
}
をhere-、公開カレンダーからのフィードを取得するのと同じ問題を議論するいくつかのスレッドがあります。
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