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 – Logs or pressing Ctrl + Enter, see:
1 2 3 4 5 6 7 | [19-07-01 16:12:12:016 EEST] https://apps.fedoraproject.org/calendar/ical/calendar/meeting/3152/ [19-07-01 16:12:12:017 EEST] https://apps.fedoraproject.org//calendar/ical/design/ [19-07-01 16:12:12:017 EEST] https://apps.fedoraproject.org/calendar/ical/calendar/meeting/3919/ [19-07-01 16:12:12:018 EEST] https://apps.fedoraproject.org//calendar/ical/marketing/ [19-07-01 16:12:12:019 EEST] Python Release Schedule [19-07-01 16:12:12:020 EEST] Python Events Calendar ... |