下面的代碼事件是假設從谷歌日曆GoogleAppsScript - 無法從日曆
// The code below will retrieve all the events for the user's default calendar and
// display the description of the first event
var cal = CalendarApp.getDefaultCalendar();
Logger.log(cal.getName());
var events = cal.getEvents(new Date("July 01, 2012 EST"), new Date("July 30, 2012 EST"));
if (events[0]) {
Logger.log(events[0].getDescription());
}
else
{
Logger.log("No events found");
}
但其只打印「未找到任何活動」獲得七月一個月的事件,
我覈實日曆命名它獲得正確的日曆,雖然沒有得到事件
還有什麼需要驗證?
「Logger.log(cal.getName())」,在上面的代碼,是給正確的用戶名 – Arun 2012-07-28 19:32:42
也許請檢查你看實際上是在用戶的事件日曆,而不是在他們創建的另一個日曆中。我可以複製'找不到事件'的唯一方法是在默認日曆中沒有事件。你的代碼看起來不錯。 – Weehooey 2012-07-28 19:51:23
我驗證了事件存在於適當的日曆中,但沒有運氣,是否還有其他東西丟失。我正通過Chrome瀏覽器的https://script.google.com從容器執行腳本 – Arun 2012-07-29 18:32:00