gpt4 book ai didi

google-apps-script - 使用自动拒绝 session 的 Google Script Api 创建外出日历事件

转载 作者:行者123 更新时间:2023-12-03 23:11:10 26 4
gpt4 key购买 nike

在 Google 日历中,可以创建一个“外出”事件,自动拒绝所有 future 对设置事件的邀请。
Event create through UI

我正在尝试使用 Google 脚本 api 创建这种类型的事件,但不知何故我无法做到。

到目前为止,我坚持写这个:

function createOutOfOffice(date){
var startDate = new Date(date);
startDate.setHours(0,0,0,0);
var endDate = new Date(startDate);
endDate.setDate(startDate.getDate() + 1);

var outOfOffice = CalendarApp.createEvent('Out of office', startDate, endDate);
outOfOffice.setVisibility(CalendarApp.Visibility.PUBLIC);
outOfOffice.removeAllReminders();
}

但它不会创建一个真正的 Out of office 事件,而是生成一个很好的全天事件:

Event created through the API

我显然在那里遗漏了一些东西,因为我创建的事件不会 自动下降 session 。

通读 api documentation ,我没有发现任何明显的东西可以帮助我实现我想要的。
使用 Google App Scripts 甚至可以远程做到这一点吗?

最佳答案

Out of Office 事件是 Google 日历的一个相当新的功能,因此,遗憾的是它还没有在 Google Apps Script 或 Google API 中实现。你可以看到here已经在 Issuetracker 上提交了相应的功能请求。您可以给它打星以提高知名度,以便该功能有望尽快实现。

关于google-apps-script - 使用自动拒绝 session 的 Google Script Api 创建外出日历事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56973013/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com