google apps script - GAS - Access Other User's Calendar ID -
i have google app business.
is possible access other user's calendar input & retrieve event? know how own calendar, not others. have super administrator access.
yes, can calendar by it's id, , get events. per comment don't believe allow calendar in domain, appear need subscribed. whether expected or not i'm unsure.
enter advanced calendar service, uses calendar api manage domains calendars (and suspect correct way go managing domains calendars). after turn calendar service on, can looking so:
function calendar(){ var cal = calendar.calendars.get('calendar@domain'); logger.log(cal.summary); };
which return 'name' of calendar. (note: primary calendars, 'name' of calendar same calendar id).
Comments
Post a Comment