Google Apps Script – calendar example – part 022.
This is another example with Google Apps Script and Calendar A.P.I. The A.P.I. reference calendar can be found at the official webpage. This simple example gets all your calendars and put into Logger.
1 2 3 4 5 6 7 | function get_calendars() { var calendars = CalendarApp.getAllCalendars(); for (var i = 0; i < calendars.length; i++) { var calendar = calendars[i]; Logger.log(calendar.getName()); } } |
The output can be seen on Logger from the main menu of script.google.com with View –… Continue Reading Google Apps Script – calendar example – part 022.