2015-06-05 42 views
0

我正在探索通過谷歌腳本或API來編寫谷歌日曆API集成。谷歌日曆:如何檢查客人不忙,並通過谷歌日曆預訂

在我預訂活動之前,我可以檢查客人是否有辦法?

+0

你會需要訪問其他用戶的日曆,看看他們的忙/閒時間; Google Apps for Business中可能的一些內容。只需使用Google Calendar API,指定用戶的日曆ID(通常是他們的電子郵件ID)。在Google Apps腳本中無法使用。 – Mogsdad

+0

Google Apps for Business + Google Apps for Education(如需信息) –

回答

0

我使用freebusy API像這樣做在谷歌腳本這個

var resource = { 
    timeMin: timeMin, 
    timeMax: timeMax, 
    items: [ 
     { 
     id: calendarId 
     } 
    ] 
    }; 

    var response = Calendar.Freebusy.query(resource); 
    return response.calendars[calendarId]['busy'].length == 0;