스크립트가 사용자의 Google Calendar를 읽고 업데이트하도록 허용합니다. 이 클래스는 사용자의 기본 캘린더에 대한 직접 액세스뿐만 아니라 사용자가 소유하거나 구독 중인 추가 캘린더를 검색하는 기능을 제공합니다.
속성
속성 | 유형 | 설명 |
---|---|---|
Color | Color | 캘린더 서비스에서 사용할 수 있는 이름이 지정된 색상을 나타내는 enum입니다. |
Event | Event | Calendar 서비스에서 사용할 수 있는 이름이 지정된 일정 색상을 나타내는 enum입니다. |
Event | Event | Event 열거형 |
Guest | Guest | 게스트가 이벤트에 대해 가질 수 있는 상태를 나타내는 enum입니다. |
Month | Month | 한 해의 월을 나타내는 enum입니다. |
Visibility | Visibility | 이벤트의 공개 상태를 나타내는 enum입니다. |
Weekday | Weekday | 요일을 나타내는 enum입니다. |
메서드
자세한 문서
create All Day Event(title, date)
새 종일 일정을 만듭니다.
// Creates an all-day event for the moon landing and logs the ID. const event = CalendarApp.getDefaultCalendar().createAllDayEvent( 'Apollo 11 Landing', new Date('July 20, 1969'), ); Logger.log(`Event ID: ${event.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 이벤트 제목입니다. |
date | Date | 이벤트 날짜입니다 (날짜만 사용되며 시간은 무시됨). |
리턴
Calendar
: 생성된 이벤트입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create All Day Event(title, startDate, endDate)
여러 날에 걸쳐 진행될 수 있는 새 종일 일정을 만듭니다.
// Creates an all-day event for the Woodstock festival (August 15th to 17th) and // logs the ID. const event = CalendarApp.getDefaultCalendar().createAllDayEvent( 'Woodstock Festival', new Date('August 15, 1969'), new Date('August 18, 1969'), ); Logger.log(`Event ID: ${event.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 이벤트 제목입니다. |
start | Date | 이벤트가 시작되는 날짜입니다 (날짜만 사용되고 시간은 무시됨). |
end | Date | 이벤트가 종료되는 날짜입니다 (날짜만 사용되고 시간은 무시됨). 종료일은 제외됩니다. |
리턴
Calendar
: 생성된 이벤트입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create All Day Event(title, startDate, endDate, options)
여러 날에 걸쳐 진행될 수 있는 새 종일 일정을 만듭니다.
// Creates an all-day event for the Woodstock festival (August 15th to 17th) and // logs the ID. const event = CalendarApp.getDefaultCalendar().createAllDayEvent( 'Woodstock Festival', new Date('August 15, 1969'), new Date('August 18, 1969'), {location: 'Bethel, White Lake, New York, U.S.', sendInvites: true}, ); Logger.log(`Event ID: ${event.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 이벤트 제목입니다. |
start | Date | 이벤트가 시작되는 날짜입니다 (날짜만 사용되고 시간은 무시됨). |
end | Date | 이벤트가 종료되는 날짜입니다 (날짜만 사용되고 시간은 무시됨). 종료일은 제외됩니다. |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 이벤트에 대한 설명입니다. |
location | String | 이벤트의 위치입니다. |
guests | String | 게스트로 추가해야 하는 이메일 주소를 쉼표로 구분한 목록입니다. |
send | Boolean | 초대 이메일을 보낼지 여부입니다 (기본값: false ). |
리턴
Calendar
: 생성된 이벤트입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create All Day Event(title, date, options)
새 종일 일정을 만듭니다.
// Creates an all-day event for the moon landing and logs the ID. const event = CalendarApp.getDefaultCalendar().createAllDayEvent( 'Apollo 11 Landing', new Date('July 20, 1969'), {location: 'The Moon'}, ); Logger.log(`Event ID: ${event.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 이벤트 제목입니다. |
date | Date | 이벤트 날짜입니다 (날짜만 사용되며 시간은 무시됨). |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 이벤트에 대한 설명입니다. |
location | String | 이벤트의 위치입니다. |
guests | String | 게스트로 추가해야 하는 이메일 주소를 쉼표로 구분한 목록입니다. |
send | Boolean | 초대 이메일을 보낼지 여부입니다 (기본값: false ). |
리턴
Calendar
: 생성된 이벤트입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create All Day EventSeries(title, startDate, recurrence)
새 종일 일정 시리즈를 만듭니다.
// Creates an event series for a no-meetings day, taking place every Wednesday // in 2013. const eventSeries = CalendarApp.getDefaultCalendar().createAllDayEventSeries( 'No Meetings', new Date('January 2, 2013 03:00:00 PM EST'), CalendarApp.newRecurrence() .addWeeklyRule() .onlyOnWeekday(CalendarApp.Weekday.WEDNESDAY) .until(new Date('January 1, 2014')), ); Logger.log(`Event Series ID: ${eventSeries.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 시리즈의 이벤트 제목 |
start | Date | 시리즈의 첫 번째 이벤트 날짜입니다 (날짜만 사용되고 시간은 무시됨). |
recurrence | Event | 이벤트 시리즈의 반복 설정 |
리턴
Calendar
: 생성된 이벤트 시리즈
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create All Day EventSeries(title, startDate, recurrence, options)
새 종일 일정 시리즈를 만듭니다.
// Creates an event series for a no-meetings day, taking place every Wednesday // in 2013. const eventSeries = CalendarApp.getDefaultCalendar().createAllDayEventSeries( 'No Meetings', new Date('January 2, 2013 03:00:00 PM EST'), CalendarApp.newRecurrence() .addWeeklyRule() .onlyOnWeekday(CalendarApp.Weekday.WEDNESDAY) .until(new Date('January 1, 2014')), {guests: 'everyone@example.com'}, ); Logger.log(`Event Series ID: ${eventSeries.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 시리즈의 이벤트 제목 |
start | Date | 시리즈의 첫 번째 이벤트 날짜입니다 (날짜만 사용되고 시간은 무시됨). |
recurrence | Event | 이벤트 시리즈의 반복 설정 |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 시리즈의 이벤트에 대한 설명 |
location | String | 시리즈의 이벤트 위치 |
guests | String | 시리즈의 이벤트에 참석자로 추가해야 하는 이메일 주소를 쉼표로 구분한 목록 |
send | Boolean | 초대 이메일을 보낼지 여부입니다 (기본값: false ). |
리턴
Calendar
: 생성된 이벤트 시리즈
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create Calendar(name)
사용자가 소유한 새 캘린더를 만듭니다.
// Creates a new calendar named "Travel Plans". const calendar = CalendarApp.createCalendar('Travel Plans'); Logger.log( 'Created the calendar "%s", with the ID "%s".', calendar.getName(), calendar.getId(), );
매개변수
이름 | 유형 | 설명 |
---|---|---|
name | String | 새 캘린더의 이름 |
리턴
Calendar
: 새로 생성된 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create Calendar(name, options)
사용자가 소유한 새 캘린더를 만듭니다.
// Creates a new calendar named "Travel Plans" with a description and color. const calendar = CalendarApp.createCalendar('Travel Plans', { description: 'A calendar to plan my travel schedule.', color: CalendarApp.Color.BLUE, }); Logger.log( 'Created the calendar "%s", with the ID "%s".', calendar.getName(), calendar.getId(), );
매개변수
이름 | 유형 | 설명 |
---|---|---|
name | String | 새 캘린더의 이름 |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
location | String | 캘린더 위치 |
description | String | 캘린더 설명 |
time | String | 캘린더를 설정할 시간대입니다. '긴' 형식 (예: Joda.org에 나열된 'America/New_York') |
color | String | 16진수 색상 문자열 ('#rrggbb') 또는 Calendar 의 값 |
hidden | Boolean | 캘린더가 사용자 인터페이스에 숨겨져 있는지 여부 (기본값: false ) |
selected | Boolean | 캘린더 일정이 사용자 인터페이스에 표시되는지 여부입니다 (기본값: true ). |
리턴
Calendar
: 새로 생성된 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create Event(title, startTime, endTime)
새 일정을 만듭니다.
시간대가 지정되지 않은 경우 시간 값은 스크립트의 시간대 컨텍스트에서 해석되며, 이는 캘린더의 시간대와 다를 수 있습니다.
// Creates an event for the moon landing and logs the ID. const event = CalendarApp.getDefaultCalendar().createEvent( 'Apollo 11 Landing', new Date('July 20, 1969 20:00:00 UTC'), new Date('July 21, 1969 21:00:00 UTC'), ); Logger.log(`Event ID: ${event.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 이벤트 제목 |
start | Date | 이벤트가 시작되는 날짜 및 시간 |
end | Date | 이벤트가 종료되는 날짜 및 시간 |
리턴
Calendar
: 생성된 이벤트
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create Event(title, startTime, endTime, options)
새 일정을 만듭니다.
시간대가 지정되지 않은 경우 시간 값은 스크립트의 시간대 컨텍스트에서 해석되며, 이는 캘린더의 시간대와 다를 수 있습니다.
// Creates an event for the moon landing and logs the ID. const event = CalendarApp.getDefaultCalendar().createEvent( 'Apollo 11 Landing', new Date('July 20, 1969 20:00:00 UTC'), new Date('July 20, 1969 21:00:00 UTC'), {location: 'The Moon'}, ); Logger.log(`Event ID: ${event.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 이벤트 제목 |
start | Date | 이벤트가 시작되는 날짜 및 시간 |
end | Date | 이벤트가 종료되는 날짜 및 시간 |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 이벤트에 대한 설명 |
location | String | 이벤트의 위치 |
guests | String | 게스트로 추가해야 하는 이메일 주소를 쉼표로 구분한 목록 |
send | Boolean | 초대 이메일을 보낼지 여부입니다 (기본값: false ). |
리턴
Calendar
: 생성된 이벤트
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create EventFromDescription(description)
자유 형식 설명에서 이벤트를 만듭니다.
설명은 UI의 '빠른 추가' 기능과 동일한 형식을 사용해야 합니다.
// Creates a new event and logs its ID. const event = CalendarApp.getDefaultCalendar().createEventFromDescription( 'Lunch with Mary, Friday at 1PM', ); Logger.log(`Event ID: ${event.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 이벤트에 대한 자유 형식의 설명 |
리턴
Calendar
: 생성된 이벤트
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create EventSeries(title, startTime, endTime, recurrence)
새 이벤트 시리즈를 만듭니다.
// Creates an event series for a team meeting, taking place every Tuesday and // Thursday in 2013. const eventSeries = CalendarApp.getDefaultCalendar().createEventSeries( 'Team Meeting', new Date('January 1, 2013 03:00:00 PM EST'), new Date('January 1, 2013 04:00:00 PM EST'), CalendarApp.newRecurrence() .addWeeklyRule() .onlyOnWeekdays( [CalendarApp.Weekday.TUESDAY, CalendarApp.Weekday.THURSDAY]) .until(new Date('January 1, 2014')), ); Logger.log(`Event Series ID: ${eventSeries.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 시리즈의 이벤트 제목 |
start | Date | 시리즈의 첫 번째 이벤트가 시작되는 날짜 및 시간 |
end | Date | 시리즈의 첫 번째 이벤트가 종료되는 날짜 및 시간 |
recurrence | Event | 이벤트 시리즈의 반복 설정 |
리턴
Calendar
: 생성된 이벤트 시리즈
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
create EventSeries(title, startTime, endTime, recurrence, options)
새 이벤트 시리즈를 만듭니다.
// Creates an event series for a team meeting, taking place every Tuesday and // Thursday in 2013. const eventSeries = CalendarApp.getDefaultCalendar().createEventSeries( 'Team Meeting', new Date('January 1, 2013 03:00:00 PM EST'), new Date('January 1, 2013 04:00:00 PM EST'), CalendarApp.newRecurrence() .addWeeklyRule() .onlyOnWeekdays( [CalendarApp.Weekday.TUESDAY, CalendarApp.Weekday.THURSDAY]) .until(new Date('January 1, 2014')), {location: 'Conference Room'}, ); Logger.log(`Event Series ID: ${eventSeries.getId()}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
title | String | 시리즈의 이벤트 제목 |
start | Date | 시리즈의 첫 번째 이벤트가 시작되는 날짜 및 시간 |
end | Date | 시리즈의 첫 번째 이벤트가 종료되는 날짜 및 시간 |
recurrence | Event | 이벤트 시리즈의 반복 설정 |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 시리즈의 이벤트에 대한 설명 |
location | String | 시리즈의 이벤트 위치 |
guests | String | 시리즈의 이벤트에 참석자로 추가해야 하는 이메일 주소를 쉼표로 구분한 목록 |
send | Boolean | 초대 이메일을 보낼지 여부입니다 (기본값: false ). |
리턴
Calendar
: 생성된 이벤트 시리즈
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
get All Calendars()
사용자가 소유하거나 구독 중인 모든 캘린더를 가져옵니다.
// Determines how many calendars the user can access. const calendars = CalendarApp.getAllCalendars(); Logger.log( 'This user owns or is subscribed to %s calendars.', calendars.length, );
리턴
Calendar[]
: 사용자가 액세스할 수 있는 모든 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get All Owned Calendars()
사용자가 소유한 모든 캘린더를 가져옵니다.
// Determines how many calendars the user owns. const calendars = CalendarApp.getAllOwnedCalendars(); Logger.log('This user owns %s calendars.', calendars.length);
리턴
Calendar[]
: 사용자가 소유한 모든 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Calendar By Id(id)
지정된 ID의 캘린더를 가져옵니다.
// Gets the public calendar "US Holidays" by ID. const calendar = CalendarApp.getCalendarById( 'en.usa#holiday@group.v.calendar.google.com', ); Logger.log('The calendar is named "%s".', calendar.getName());
매개변수
이름 | 유형 | 설명 |
---|---|---|
id | String | 캘린더 ID |
리턴
Calendar
: 지정된 ID의 캘린더 또는 캘린더가 없거나 사용자가 액세스할 수 없거나 사용자가 캘린더를 구독하지 않은 경우 null
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Calendars By Name(name)
사용자가 소유하거나 구독 중인 지정된 이름의 모든 캘린더를 가져옵니다. 이름은 대소문자를 구분하지 않습니다.
// Gets the public calendar named "US Holidays". const calendars = CalendarApp.getCalendarsByName('US Holidays'); Logger.log('Found %s matching calendars.', calendars.length);
매개변수
이름 | 유형 | 설명 |
---|---|---|
name | String | 캘린더 이름 |
리턴
Calendar[]
: 사용자가 액세스할 수 있는 이 이름의 모든 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Color()
캘린더의 색상을 가져옵니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Gets the color of the calendar and logs it to the console. // For the default calendar, you can use CalendarApp.getColor() instead. const calendarColor = calendar.getColor(); console.log(calendarColor);
리턴
String
: 16진수 색상 문자열 ('#rrggbb')입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Default Calendar()
사용자의 기본 캘린더를 가져옵니다.
// Determines the time zone of the user's default calendar. const calendar = CalendarApp.getDefaultCalendar(); Logger.log( 'My default calendar is set to the time zone "%s".', calendar.getTimeZone(), );
리턴
Calendar
: 사용자의 기본 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Description()
캘린더의 설명을 가져옵니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Sets the description of the calendar to 'Test description.' calendar.setDescription('Test description'); // Gets the description of the calendar and logs it to the console. // For the default calendar, you can use CalendarApp.getDescription() instead. const description = calendar.getDescription(); console.log(description);
리턴
String
: 이 캘린더에 대한 설명입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Event By Id(iCalId)
지정된 ID의 이벤트를 가져옵니다. 시리즈가 기본 캘린더가 아닌 다른 캘린더에 속하는 경우 이 메서드는 해당 캘린더에서 호출해야 합니다. get
를 호출하면 기본 캘린더의 일정만 반환됩니다.
이벤트 시리즈에 포함된 여러 이벤트의 ID가 동일할 수 있습니다. 이 경우 이 메서드는 해당 시리즈의 첫 번째 이벤트만 반환합니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Creates an event for the moon landing. const event = calendar.createEvent( 'Apollo 11 Landing', new Date('July 20, 1969 20:05:00 UTC'), new Date('July 20, 1969 20:17:00 UTC'), ); // Gets the calendar event ID and logs it to the console. const iCalId = event.getId(); console.log(iCalId); // Gets the event by its ID and logs the title of the event to the console. // For the default calendar, you can use CalendarApp.getEventById(iCalId) // instead. const myEvent = calendar.getEventById(iCalId); console.log(myEvent.getTitle());
매개변수
이름 | 유형 | 설명 |
---|---|---|
iCalId | String | 이벤트 ID입니다. |
리턴
Calendar
: 지정된 ID의 이벤트 또는 이벤트가 없거나 사용자가 액세스할 수 없는 경우 null
입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Event Series By Id(iCalId)
지정된 ID가 있는 이벤트 시리즈를 가져옵니다. 지정된 ID가 단일 Calendar
의 ID인 경우 Calendar
가 시리즈의 단일 이벤트와 함께 반환됩니다. 이벤트 시리즈가 기본 캘린더가 아닌 다른 캘린더에 속하는 경우 이 메서드는 해당 Calendar
에서 호출해야 합니다. get
를 직접 호출하면 기본 캘린더에 있는 이벤트 시리즈만 반환됩니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Creates an event series for a daily team meeting from 1 PM to 2 PM. // The series adds the daily event from January 1, 2023 through December 31, // 2023. const eventSeries = calendar.createEventSeries( 'Team meeting', new Date('Jan 1, 2023 13:00:00'), new Date('Jan 1, 2023 14:00:00'), CalendarApp.newRecurrence().addDailyRule().until(new Date('Jan 1, 2024')), ); // Gets the ID of the event series. const iCalId = eventSeries.getId(); // Gets the event series by its ID and logs the series title to the console. // For the default calendar, you can use CalendarApp.getEventSeriesById(iCalId) // instead. console.log(calendar.getEventSeriesById(iCalId).getTitle());
매개변수
이름 | 유형 | 설명 |
---|---|---|
iCalId | String | 이벤트 시리즈의 ID입니다. |
리턴
Calendar
: 지정된 ID가 있는 시리즈 또는 시리즈가 없거나 사용자가 액세스할 수 없는 경우 null
입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Events(startTime, endTime)
지정된 기간 내에 발생한 모든 이벤트를 가져옵니다.
이 메서드는 지정된 기간 중에 시작되거나, 기간 중에 종료되거나, 기간을 포함하는 이벤트를 반환합니다. 시간대가 지정되지 않으면 시간 값은 스크립트의 시간대 컨텍스트에서 해석되며, 이는 캘린더의 시간대와 다를 수 있습니다.
// Determines how many events are happening in the next two hours. const now = new Date(); const twoHoursFromNow = new Date(now.getTime() + 2 * 60 * 60 * 1000); const events = CalendarApp.getDefaultCalendar().getEvents(now, twoHoursFromNow); Logger.log(`Number of events: ${events.length}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
start | Date | 기간의 시작 |
end | Date | 기간의 종료(해당 값 제외) |
리턴
Calendar
: 기간 내에 발생한 이벤트
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Events(startTime, endTime, options)
지정된 기간 내에 발생하고 지정된 기준을 충족하는 모든 이벤트를 가져옵니다.
이 메서드는 지정된 기간 중에 시작되거나, 기간 중에 종료되거나, 기간을 포함하는 이벤트를 반환합니다. 시간대가 지정되지 않으면 시간 값은 스크립트의 시간대 컨텍스트에서 해석되며, 이는 캘린더의 시간대와 다를 수 있습니다.
author
, search
또는 status
의 필터링은 start
및 max
를 적용한 후에 이루어집니다. 즉, 추가 이벤트가 기준을 충족하더라도 반환된 이벤트 수가 max
보다 적을 수 있습니다.
// Determines how many events are happening in the next two hours that contain // the term "meeting". const now = new Date(); const twoHoursFromNow = new Date(now.getTime() + 2 * 60 * 60 * 1000); const events = CalendarApp.getDefaultCalendar().getEvents( now, twoHoursFromNow, {search: 'meeting'}, ); Logger.log(`Number of events: ${events.length}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
start | Date | 기간의 시작 |
end | Date | 기간의 종료(해당 값 제외) |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
start | Integer | 반환할 첫 번째 이벤트의 색인 |
max | Integer | 반환할 최대 이벤트 수 |
author | String | 이벤트 크리에이터별로 결과를 필터링하는 데 사용되는 이메일 주소 |
search | String | 결과를 필터링하는 데 사용되는 전체 텍스트 검색 쿼리 |
status | Guest | 결과를 필터링하는 데 사용되는 상태 배열 |
리턴
Calendar
: 기간 내에 발생하고 기준과 일치하는 이벤트
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get EventsForDay(date)
지정된 날짜에 발생한 모든 이벤트를 가져옵니다.
이 메서드는 지정된 날짜에 시작되거나, 해당 날짜에 종료되거나, 해당 날짜를 포함하는 이벤트를 반환합니다.
Date 객체의 날짜 부분만 사용되며 시간 부분은 무시됩니다. 날짜는 캘린더의 시간대에서 해당 날짜 자정부터 다음 날 자정까지로 해석됩니다.
// Determines how many events are happening today. const today = new Date(); const events = CalendarApp.getDefaultCalendar().getEventsForDay(today); Logger.log(`Number of events: ${events.length}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
date | Date | 이벤트를 검색할 날짜입니다 (날짜만 사용되고 시간은 무시됨). |
리턴
Calendar
: 지정된 날짜에 발생한 이벤트
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get EventsForDay(date, options)
지정된 날짜에 발생하고 지정된 기준을 충족하는 모든 이벤트를 가져옵니다.
이 메서드는 지정된 날짜에 시작되거나, 해당 날짜에 종료되거나, 해당 날짜를 포함하는 이벤트를 반환합니다.
Date 객체의 날짜 부분만 사용되며 시간 부분은 무시됩니다. 날짜는 캘린더의 시간대에서 해당 날짜 자정부터 다음 날 자정까지로 해석됩니다.
author
, search
또는 status
의 필터링은 start
및 max
를 적용한 후에 이루어집니다. 즉, 추가 이벤트가 기준을 충족하더라도 반환된 이벤트 수가 max
보다 적을 수 있습니다.
// Determines how many events are happening today and contain the term // "meeting". const today = new Date(); const events = CalendarApp.getDefaultCalendar().getEventsForDay(today, { search: 'meeting', }); Logger.log(`Number of events: ${events.length}`);
매개변수
이름 | 유형 | 설명 |
---|---|---|
date | Date | 이벤트를 검색할 날짜입니다 (날짜만 사용되고 시간은 무시됨). |
options | Object | 고급 필터링 옵션 |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
start | Integer | 반환할 첫 번째 이벤트의 색인 |
max | Integer | 반환할 최대 이벤트 수 |
author | String | 이벤트 크리에이터별로 결과를 필터링하는 데 사용되는 이메일 주소 |
search | String | 결과를 필터링하는 데 사용되는 전체 텍스트 검색 쿼리 |
status | Guest | 결과를 필터링하는 데 사용되는 상태 배열 |
리턴
Calendar
: 지정된 날짜에 발생하고 기준과 일치하는 이벤트입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Id()
캘린더의 ID를 가져옵니다. 사용자의 기본 캘린더 ID는 이메일 주소입니다.
// Opens the calendar by its ID. // To get the user's default calendar, use CalendarApp.getDefaultCalendar(). // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Gets the ID of the calendar and logs it to the console. const calendarId = calendar.getId(); console.log(calendarId);
리턴
String
: 캘린더의 ID입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Name()
캘린더 이름을 가져옵니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Gets the name of the calendar and logs it to the console. // For the default calendar, you can use CalendarApp.getName() instead. const calendarName = calendar.getName(); console.log(calendarName);
리턴
String
: 이 캘린더의 이름입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Owned Calendar By Id(id)
사용자가 소유한 경우 지정된 ID의 캘린더를 가져옵니다.
캘린더 ID를 찾으려면 Google Calendar에서 캘린더 이름 옆에 있는 화살표를 클릭하고 Calendar settings(Calendar 설정)를 선택합니다. ID는 설정 페이지 하단에 표시됩니다.
// Gets a (non-existent) private calendar by ID. const calendar = CalendarApp.getOwnedCalendarById( '123456789@group.calendar.google.com', ); Logger.log('The calendar is named "%s".', calendar.getName());
매개변수
이름 | 유형 | 설명 |
---|---|---|
id | String | 캘린더 ID |
리턴
Calendar
: 지정된 ID의 캘린더 또는 캘린더가 없거나 사용자가 소유하지 않은 경우 null
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Owned Calendars By Name(name)
사용자가 소유한 지정된 이름의 모든 캘린더를 가져옵니다. 이름은 대소문자를 구분하지 않습니다.
// Gets a private calendar named "Travel Plans". const calendars = CalendarApp.getOwnedCalendarsByName('Travel Plans'); Logger.log('Found %s matching calendars.', calendars.length);
매개변수
이름 | 유형 | 설명 |
---|---|---|
name | String | 캘린더 이름 |
리턴
Calendar[]
: 사용자가 소유한 이 이름의 모든 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
get Time Zone()
캘린더의 시간대를 가져옵니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Gets the time zone of the calendar and logs it to the console. // For the default calendar, you can use CalendarApp.getTimeZone() instead. const timeZone = calendar.getTimeZone(); console.log(timeZone);
리턴
String
: '긴' 형식으로 지정된 시간대입니다 (예: Joda.org에 나열된 'America/New_York').
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
is Hidden()
캘린더가 사용자 인터페이스에 숨겨져 있는지 여부를 결정합니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Determines whether the calendar is hidden in the user interface and logs it // to the console. For the default calendar, you can use CalendarApp.isHidden() // instead. const isHidden = calendar.isHidden(); console.log(isHidden);
리턴
Boolean
: 캘린더가 사용자 인터페이스에 숨겨져 있으면 true
이고, 숨겨져 있지 않으면 false
입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
is My Primary Calendar()
캘린더가 실제 사용자의 기본 캘린더인지 여부를 결정합니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Determines whether the calendar is the default calendar for // the effective user and logs it to the console. // For the default calendar, you can use CalendarApp.isMyPrimaryCalendar() // instead. const isMyPrimaryCalendar = calendar.isMyPrimaryCalendar(); console.log(isMyPrimaryCalendar);
리턴
Boolean
: 캘린더가 실제 사용자의 기본 캘린더인 경우 true
이고, 그렇지 않은 경우 false
입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
is Owned By Me()
캘린더가 내 소유인지 확인합니다.
// Gets a calendar by its ID. To get the user's default calendar, use // CalendarApp.getDefault() instead. // TODO(developer): Replace the ID with the calendar ID that you want to use. const calendar = CalendarApp.getCalendarById( 'abc123456@group.calendar.google.com', ); // Determines whether the calendar is owned by you and logs it. console.log(calendar.isOwnedByMe());
리턴
Boolean
: 캘린더를 내가 소유한 경우 true
이고, 소유하지 않은 경우 false
입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
is Selected()
캘린더의 일정이 사용자 인터페이스에 표시되는지 여부를 결정합니다.
// Gets the user's default calendar. To get a different calendar, // use getCalendarById() instead. const calendar = CalendarApp.getDefaultCalendar(); // Determines whether the calendar's events are displayed in the user interface // and logs it. console.log(calendar.isSelected());
리턴
Boolean
: 캘린더 일정이 사용자 인터페이스에 표시되는 경우 true
이고 표시되지 않는 경우 false
입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
new Recurrence()
이벤트 반복 규칙을 만드는 데 사용할 수 있는 새 반복 객체를 만듭니다.
// Creates an event series for a no-meetings day, taking place every Wednesday // in 2013. const recurrence = CalendarApp.newRecurrence() .addWeeklyRule() .onlyOnWeekday(CalendarApp.Weekday.WEDNESDAY) .until(new Date('January 1, 2014')); const eventSeries = CalendarApp.getDefaultCalendar().createAllDayEventSeries( 'No Meetings', new Date('January 2, 2013 03:00:00 PM EST'), recurrence, ); Logger.log(`Event Series ID: ${eventSeries.getId()}`);
리턴
Event
: 규칙이 설정되지 않은 새 반복 객체 (주간 반복으로 작동)
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
set Color(color)
캘린더의 색상을 설정합니다.
// Opens the calendar by its ID. // TODO(developer): Replace the ID with your own. const calendar = CalendarApp.getCalendarById('222larabrown@gmail.com'); // Sets the color of the calendar to pink using the Calendar Color enum. // For the default calendar, you can use CalendarApp.setColor() instead. calendar.setColor(CalendarApp.Color.PINK);
매개변수
이름 | 유형 | 설명 |
---|---|---|
color | String | Calendar 또는 16진수 색상 문자열("#rrggbb")입니다. |
리턴
Calendar
: 체이닝을 위한 캘린더입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
set Description(description)
캘린더의 설명을 설정합니다.
// Gets the user's default calendar. To get a different calendar, // use getCalendarById() instead. const calendar = CalendarApp.getDefaultCalendar(); // Sets the description of the calendar. // TODO(developer): Update the string with the description that you want to use. calendar.setDescription('Updated calendar description.');
매개변수
이름 | 유형 | 설명 |
---|---|---|
description | String | 이 캘린더에 대한 설명 |
리턴
Calendar
: 연결을 위한 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
set Hidden(hidden)
캘린더가 사용자 인터페이스에 표시될지 설정합니다.
매개변수
이름 | 유형 | 설명 |
---|---|---|
hidden | Boolean | true : 사용자 인터페이스에서 캘린더를 숨기고 false : 표시합니다. |
리턴
Calendar
: 연결을 위한 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
set Name(name)
캘린더 이름을 설정합니다.
// Gets the user's default calendar. To get a different calendar, // use getCalendarById() instead. const calendar = CalendarApp.getDefaultCalendar(); // Sets the name of the calendar. // TODO(developer): Update the string with the name that you want to use. calendar.setName('Example calendar name');
매개변수
이름 | 유형 | 설명 |
---|---|---|
name | String | 새 이름 |
리턴
Calendar
: 연결을 위한 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
set Selected(selected)
캘린더의 일정이 사용자 인터페이스에 표시되는지 여부를 설정합니다.
// Gets the user's default calendar. To get a different calendar, // use getCalendarById() instead. const calendar = CalendarApp.getDefaultCalendar(); // Selects the calendar so that its events are displayed in the user interface. // To unselect the calendar, set the parameter to false. calendar.setSelected(true);
매개변수
이름 | 유형 | 설명 |
---|---|---|
selected | Boolean | true : 사용자 인터페이스에 캘린더 일정을 표시합니다. false : 숨깁니다. |
리턴
Calendar
: 연결을 위한 캘린더
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
set Time Zone(timeZone)
캘린더의 시간대를 설정합니다.
// Gets the user's default calendar. To get a different calendar, // use getCalendarById() instead. const calendar = CalendarApp.getDefaultCalendar(); // Sets the time zone of the calendar to America/New York (US/Eastern) time. calendar.setTimeZone('America/New_York');
매개변수
이름 | 유형 | 설명 |
---|---|---|
time | String | '긴' 형식으로 지정된 시간대입니다 (예: Joda.org에 나열된 'America/New_York'). |
리턴
Calendar
: 체이닝을 위한 캘린더입니다.
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
subscribe To Calendar(id)
사용자가 구독하도록 허용된 경우 지정된 ID로 캘린더를 구독합니다.
// Subscribe to the calendar "US Holidays". const calendar = CalendarApp.subscribeToCalendar( 'en.usa#holiday@group.v.calendar.google.com', ); Logger.log('Subscribed to the calendar "%s".', calendar.getName());
매개변수
이름 | 유형 | 설명 |
---|---|---|
id | String | 구독할 캘린더의 ID |
리턴
Calendar
: 새로 구독한 캘린더
생성 값
Error
: 이 ID가 있는 캘린더가 없는 경우
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
subscribe To Calendar(id, options)
사용자가 구독하도록 허용된 경우 지정된 ID로 캘린더를 구독합니다.
// Subscribe to the calendar "US Holidays", and set it to the color blue. const calendar = CalendarApp.subscribeToCalendar( 'en.usa#holiday@group.v.calendar.google.com', {color: CalendarApp.Color.BLUE}, ); Logger.log('Subscribed to the calendar "%s".', calendar.getName());
매개변수
이름 | 유형 | 설명 |
---|---|---|
id | String | 구독할 캘린더의 ID입니다. |
options | Object | 아래에 나열된 고급 매개변수를 지정하는 JavaScript 객체입니다. |
고급 매개변수
이름 | 유형 | 설명 |
---|---|---|
color | String | 16진수 색상 문자열 ('#rrggbb') 또는 Calendar 의 값입니다. |
hidden | Boolean | 캘린더가 사용자 인터페이스에 숨겨져 있는지 여부입니다 (기본값: false ). |
selected | Boolean | 캘린더 일정이 사용자 인터페이스에 표시되는지 여부입니다 (기본값: color 도 지정된 경우 true , 그렇지 않은 경우 false ). |
리턴
Calendar
: 새로 구독한 캘린더입니다.
생성 값
Error
: 이 ID가 있는 캘린더가 없는 경우
승인
이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상 또는 관련 REST API의 적절한 범위가 있는 승인이 필요합니다.
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds