У меня есть следующий код в скрипте:
var createdEvent = CalendarApp.getCalendarById(calendarId).createEvent(title, startTime, endTime, options); createdEvent.guestsCanModify(true);
Когда я вызываю метод guestCanModify (), я получаю следующую ошибку:
Cannot find method guestsCanModify(boolean)
У меня есть Для сценария включены следующие области действия:
"oauthScopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.google.com/calendar/feeds", "https://www.googleapis.com/auth/spreadsheets.currentonly", "https://www.googleapis.com/auth/spreadsheets"]
Я неправильно использую этот метод? Документация мне кажется туманной.
Я использовал неправильный метод. Правильный метод - setGhestCanModify ().
Документация здесь ...