-1

您可以创建一个谷歌应用程序,为使用日历 api 的用户设置短信通知吗?

4

3 回答 3

2

在应用程序脚本中,您可以使用编程方式设置短信提醒,

CalendarApp.createEvent('Message here',
                            new Date(new Date().getTime()+60000),
                            new Date(new Date().getTime()+60000)).addSmsReminder(0);

有关工作示例,请参见此处,https://developers.google.com/apps-script/articles/gmail_filter_sms

于 2012-08-23T17:09:36.497 回答
0

除非您愿意将另一个 api 与日历结合使用,否则这似乎是不可能的(我不明白您为什么不想……)。这可能是开始寻找合适 api 的好地方:Programmatic SMS

于 2012-08-23T12:25:07.570 回答
0

如果您的问题是使用 Apps 脚本,这是可能的。请参阅https://developers.google.com/apps-script/class_calendarevent#addSmsReminder

于 2012-08-23T15:19:00.873 回答