2

我正在使用谷歌日历 API 在谷歌日历上创建事件,它工作正常。当我在 Google 日历中修改其中一个事件时,Google 可以通过电子邮件向我发送带有 .ics 文件的更新。

有没有办法通过电子邮件或 ics 文件确定 eventid,并在我使用 API 创建事件时将其绑定回 eventid?

例如,我想自动接收从 Google 日历发送的事件更改电子邮件,并在我的数据库中更新事件(我存储使用 API 添加事件返回的 eventid)

4

1 回答 1

1

在电子邮件的正文中,您应该有:

<meta itemprop=3D"eventId/googleCalendar" content=3D"[your event id here]"/>

但是,解析电子邮件并不是最好的方法。此处列出了首选方法:https ://developers.google.com/google-apps/calendar/v3/sync

如果您需要/想要一种推送方法,请在此处列出:https ://developers.google.com/google-apps/calendar/v3/push

于 2016-09-19T06:47:14.910 回答