表示用户拥有或订阅的日历。
方法
详细文档
createAllDayEvent(title, date)
创建新的全天活动。
// Creates an all-day event for the moon landing and logs the ID. var event = CalendarApp.getDefaultCalendar().createAllDayEvent('Apollo 11 Landing', new Date('July 20, 1969')); Logger.log('Event ID: ' + event.getId());
参数
名称 | 类型 | 说明 |
---|---|---|
title | String | 活动的标题。 |
date | Date | 事件的日期(仅使用日期,忽略时间)。 |
返回
CalendarEvent
- 创建的事件。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createAllDayEvent(title, startDate, endDate)
新建可以持续数天的全天活动。
// Creates an all-day event for the Woodstock festival (August 15th to 17th) and logs the ID. var event = CalendarApp.getDefaultCalendar().createAllDayEvent('Woodstock Festival', new Date('August 15, 1969'), new Date('August 18, 1969')); Logger.log('Event ID: ' + event.getId());
参数
名称 | 类型 | 说明 |
---|---|---|
title | String | 活动的标题。 |
startDate | Date | 活动的开始日期(仅使用当天,并忽略时间)。 |
endDate | Date | 活动的结束日期(仅使用当天,并忽略时间)。通过 不含结束日期。 |
返回
CalendarEvent
- 创建的事件。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createAllDayEvent(title, startDate, endDate, options)
新建可以持续数天的全天活动。
// Creates an all-day event for the Woodstock festival (August 15th to 17th) and logs the ID. var 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 | 活动的标题。 |
startDate | Date | 活动的开始日期(仅使用当天,并忽略时间)。 |
endDate | Date | 活动的结束日期(仅使用当天,并忽略时间)。通过 不含结束日期。 |
options | Object | 一个 JavaScript 对象,用于指定下列高级参数。 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
description | String | 活动的说明。 |
location | String | 活动的地点。 |
guests | String | 应添加的电子邮件地址列表(以英文逗号分隔) 以访客身份访问。 |
sendInvites | Boolean | 是否发送邀请电子邮件(默认值:false )。 |
返回
CalendarEvent
- 创建的事件。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createAllDayEvent(title, date, options)
创建新的全天活动。
// Creates an all-day event for the moon landing and logs the ID. var 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 | 应添加的电子邮件地址列表(以英文逗号分隔) 以访客身份访问。 |
sendInvites | Boolean | 是否发送邀请电子邮件(默认值:false )。 |
返回
CalendarEvent
- 创建的事件。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createAllDayEventSeries(title, startDate, recurrence)
创建新的全天活动系列。
// Creates an event series for a no-meetings day, taking place every Wednesday in 2013. var 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 | 系列中活动的标题 |
startDate | Date | 系列中第一个活动的日期(仅使用日期;时间为 已忽略) |
recurrence | EventRecurrence | 活动系列的重复规则设置 |
返回
CalendarEventSeries
- 已创建的活动系列
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createAllDayEventSeries(title, startDate, recurrence, options)
创建新的全天活动系列。
// Creates an event series for a no-meetings day, taking place every Wednesday in 2013. var 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 | 系列中活动的标题 |
startDate | Date | 系列中第一个活动的日期(仅使用日期;时间为 已忽略) |
recurrence | EventRecurrence | 活动系列的重复规则设置 |
options | Object | 一个用于指定高级参数(如下所列)的 JavaScript 对象 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
description | String | 系列中活动的说明 |
location | String | 系列中活动的位置 |
guests | String | 应添加的电子邮件地址列表(以英文逗号分隔) 以嘉宾身份参加此系列活动的 |
sendInvites | Boolean | 是否发送邀请电子邮件(默认值:false ) |
返回
CalendarEventSeries
- 已创建的活动系列
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createEvent(title, startTime, endTime)
创建新事件。
如果未指定时区,则根据脚本的上下文来解释时间值 时区,该时区可能与日历的时区不同。
// Creates an event for the moon landing and logs the ID. var 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 | 活动的标题 |
startTime | Date | 活动开始的日期和时间 |
endTime | Date | 活动结束的日期和时间 |
返回
CalendarEvent
- 创建的事件
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createEvent(title, startTime, endTime, options)
创建新事件。
如果未指定时区,则根据脚本的上下文来解释时间值 时区,该时区可能与日历的时区不同。
// Creates an event for the moon landing and logs the ID. var 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 | 活动的标题 |
startTime | Date | 活动开始的日期和时间 |
endTime | Date | 活动结束的日期和时间 |
options | Object | 一个用于指定高级参数(如下所列)的 JavaScript 对象 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
description | String | 活动说明 |
location | String | 事件的地点 |
guests | String | 应添加的电子邮件地址列表(以英文逗号分隔) 以访客身份 |
sendInvites | Boolean | 是否发送邀请电子邮件(默认值:false ) |
返回
CalendarEvent
- 创建的事件
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createEventFromDescription(description)
根据自由形式的说明创建事件。
说明应使用与界面上的“快速添加”功能相同的格式。
// Creates a new event and logs its ID. var event = CalendarApp.getDefaultCalendar() .createEventFromDescription('Lunch with Mary, Friday at 1PM'); Logger.log('Event ID: ' + event.getId());
参数
名称 | 类型 | 说明 |
---|---|---|
description | String | 不限格式的活动说明 |
返回
CalendarEvent
- 创建的事件
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createEventSeries(title, startTime, endTime, recurrence)
创建新的系列活动。
// Creates an event series for a team meeting, taking place every Tuesday and Thursday in 2013. var 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 | 系列中活动的标题 |
startTime | Date | 系列中第一个活动开始的日期和时间 |
endTime | Date | 系列中第一个活动的结束日期和时间 |
recurrence | EventRecurrence | 活动系列的重复规则设置 |
返回
CalendarEventSeries
- 已创建的活动系列
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
createEventSeries(title, startTime, endTime, recurrence, options)
创建新的系列活动。
// Creates an event series for a team meeting, taking place every Tuesday and Thursday in 2013. var 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 | 系列中活动的标题 |
startTime | Date | 系列中第一个活动开始的日期和时间 |
endTime | Date | 系列中第一个活动的结束日期和时间 |
recurrence | EventRecurrence | 活动系列的重复规则设置 |
options | Object | 一个用于指定高级参数(如下所列)的 JavaScript 对象 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
description | String | 系列中活动的说明 |
location | String | 系列中活动的位置 |
guests | String | 应添加的电子邮件地址列表(以英文逗号分隔) 以嘉宾身份参加此系列活动的 |
sendInvites | Boolean | 是否发送邀请电子邮件(默认值:false ) |
返回
CalendarEventSeries
- 已创建的活动系列
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
deleteCalendar()
永久删除日历。用户只能删除自己拥有的日历。
// Creates a calendar to delete. const calendar = CalendarApp.createCalendar('Test'); // Deletes the 'Test' calendar permanently. calendar.deleteCalendar();
抛出
Error
- 如果这是导入的日历。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
getColor()
获取日历的颜色。
// 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
- 十六进制颜色字符串 ("#rrggbb")。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
getDescription()
获取日历的说明。
// 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
getEventById(iCalId)
获取具有指定 ID 的事件。如果该系列图书属于非默认日历
日历,则必须从该日历中调用此方法。仅拨打 CalendarApp.getEventById(iCalId)
在默认日历中返回活动。
如果多个活动是活动系列的一部分,则可以使用相同的 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。 |
返回
CalendarEvent
- 具有指定 ID 的事件;如果事件不存在或用户null
无法访问这些数据。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
getEventSeriesById(iCalId)
获取具有指定 ID 的活动系列。如果给定的 ID 是单个 CalendarEvent
的,
则会返回 CalendarEventSeries
,其中包含系列中的单个事件。请注意,如果
活动系列属于默认日历以外的日历,则此方法必须
从该 Calendar
调用;正在呼叫CalendarApp.getEventSeriesById(iCalId)
仅返回默认日历中存在的活动系列。
// 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。 |
返回
CalendarEventSeries
- 具有指定 ID 的系列图书,或者 null
(如果系列不存在或用户
无法访问这些数据。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
getEvents(startTime, endTime)
获取指定时间范围内发生的所有事件。
此方法会返回在指定时间范围内开始,并在该时间范围内结束的事件 范围或包含时间范围。如果未指定时区,则采用时间值 根据脚本的时区进行解释,该时区可能不同于 日历的时区。
// Determines how many events are happening in the next two hours. var now = new Date(); var twoHoursFromNow = new Date(now.getTime() + (2 * 60 * 60 * 1000)); var events = CalendarApp.getDefaultCalendar().getEvents(now, twoHoursFromNow); Logger.log('Number of events: ' + events.length);
参数
名称 | 类型 | 说明 |
---|---|---|
startTime | Date | 时间范围的开始时间 |
endTime | Date | 时间范围的结束时间(不含边界值) |
返回
CalendarEvent[]
- 此时间范围内发生的事件
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
getEvents(startTime, endTime, options)
获取给定时间范围内发生且符合指定条件的所有事件。
此方法会返回在指定时间范围内开始、在相应时间段内结束的事件 范围或包含时间范围。如果未指定时区,则采用时间值 根据脚本的时区进行解释,该时区可能不同于 日历的时区。
请注意,对 author
、search
或 statusFilters
进行过滤需要
应用 start
和 max
后放置的位置。这意味着
即使有其他事件满足条件,返回的值可能小于 max
。
// Determines how many events are happening in the next two hours that contain the term // "meeting". var now = new Date(); var twoHoursFromNow = new Date(now.getTime() + (2 * 60 * 60 * 1000)); var events = CalendarApp.getDefaultCalendar().getEvents(now, twoHoursFromNow, {search: 'meeting'}); Logger.log('Number of events: ' + events.length);
参数
名称 | 类型 | 说明 |
---|---|---|
startTime | Date | 时间范围的开始时间 |
endTime | Date | 时间范围的结束时间(不含边界值) |
options | Object | 一个用于指定高级参数(如下所列)的 JavaScript 对象 |
高级参数
名称 | 类型 | 说明 |
---|---|---|
start | Integer | 要返回的第一个事件的索引 |
max | Integer | 要返回的事件数上限 |
author | String | 用于按活动创建者过滤结果的电子邮件地址 |
search | String | 用于过滤结果的全文搜索查询 |
statusFilters[] | GuestStatus | 用于过滤结果的状态数组 |
返回
CalendarEvent[]
- 在时间范围内发生且符合条件的事件
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
getEventsForDay(date)
获取指定日期发生的所有事件。
此方法会返回在当天开始、在当天结束或 包含当天的全部内容
请注意,仅使用 Date 对象的日期部分,并忽略时间部分。 系统会将此日期解读为日历时间的当天午夜至次日午夜 可用区。
// Determines how many events are happening today. var today = new Date(); var events = CalendarApp.getDefaultCalendar().getEventsForDay(today); Logger.log('Number of events: ' + events.length);
参数
名称 | 类型 | 说明 |
---|---|---|
date | Date | 要为其检索活动的日期(仅使用日期,并忽略时间) |
返回
CalendarEvent[]
- 在指定日期发生的事件
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
getEventsForDay(date, options)
获取指定日期发生且符合指定条件的所有事件。
此方法会返回在当天开始、在当天结束或 包含当天的全部内容
请注意,仅使用 Date 对象的日期部分,并忽略时间部分。 系统会将此日期解读为日历时间的当天午夜至次日午夜 可用区。
请注意,对 author
、search
或 statusFilters
进行过滤需要
应用 start
和 max
后放置的位置。这意味着
即使有其他事件满足条件,返回的值可能小于 max
。
// Determines how many events are happening today and contain the term "meeting". var today = new Date(); var 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 | 用于过滤结果的全文搜索查询 |
statusFilters[] | GuestStatus | 用于过滤结果的状态数组 |
返回
CalendarEvent[]
- 在指定日期发生且符合条件的事件
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
getId()
获取日历 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
getName()
获取日历名称。
// 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
getTimeZone()
获取日历的时区。
// 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
- 时区,以“long”指定格式(例如“America/New_York”,
Joda.org 提供)。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.googleapis.com/auth/calendar.readonly
-
https://www.google.com/calendar/feeds
isHidden()
确定日历是否隐藏在界面中。
// 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
isMyPrimaryCalendar()
确定日历是否为有效用户的主日历。
// 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
isOwnedByMe()
确定日历是否归您所有。
// 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
isSelected()
确定日历的活动是否显示在界面中。
// 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
setColor(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 | CalendarApp.Color 或十六进制颜色字符串
(“#rrggbb”)。 |
返回
Calendar
- 此日历用于链接。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
setDescription(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
setHidden(hidden)
设置日历是否在界面中可见。
参数
名称 | 类型 | 说明 |
---|---|---|
hidden | Boolean | true ,用于在界面中隐藏日历;false 即可显示 |
返回
Calendar
- 此日历,用于链式管理
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
setName(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
setSelected(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
setTimeZone(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');
参数
名称 | 类型 | 说明 |
---|---|---|
timeZone | String | 时区,以“long”指定格式(例如“America/New_York”, Joda.org 上列出的网站)。 |
返回
Calendar
- 此日历用于链接。
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds
unsubscribeFromCalendar()
为用户退订日历。用户无法退订 我的日历列表。他们可以退订其他 日历。
// Gets the calendar by its ID. // TODO(developer): Replace the calendar ID with the calendar ID that you want to get. const calendar = CalendarApp.getCalendarById('abc123456@group.calendar.google.com'); // Unsubscribes the user from the calendar. const result = calendar.unsubscribeFromCalendar();
抛出
Error
- 如果这是自有日历
授权
使用此方法的脚本需要以下一个或多个范围或相关 REST API 的适当范围的授权:
-
https://www.googleapis.com/auth/calendar
-
https://www.google.com/calendar/feeds