I can list a selected calendar events by adding the calendarID to the script:
var request = gapi.client.calendar.events.list({
'calendarId': 'primary'
});
this gets the primary calendar and by swopping out the 'primary' to the calendar id required
'calendarId': '[email protected]'
But what I would like to do is list ALL events from ALL calendars, so is there away to do this like below for EG:
'calendarId': 'ALL'