概要
GASを使って実行日のGoogleカレンダーの予定を出力してみる。
方法
- 下記の方法で予定を取得したいカレンダーIDを確認
-
下記のコードを記載して実行(予定のタイトルが順々に出力される。)
main.gsfunction myFunction() { const calendarId = 'カレンダーIDを設定'; const calendar = CalendarApp.getCalendarById(calendarId); if (calendar === null) { console.log('カレンダーが取得できません。'); return false; } const today = new Date(); const todayEvents = calendar.getEventsForDay(today); todayEvents.forEach((todayEvent) => { console.log(todayEvent.getTitle()); }); return true; }
参考文献