如何从Google日历php API中仅获取更新的事件?

时间:2017-11-29 12:43:18

标签: google-calendar-api

我只需从谷歌日历中获取更新的事件。是否可能?

1 个答案:

答案 0 :(得分:1)

使用"增量同步" Calendar API中的功能,请参阅:https://developers.google.com/google-apps/calendar/v3/sync

初次请求后:

  

重复执行增量同步并使用更新客户端   自上次同步以来发生的所有更改。每一次,   客户端提供它从中获取的先前同步令牌   服务器并存储响应中的新同步令牌。

请参阅syncToken方法的events.list()参数:https://developers.google.com/google-apps/calendar/v3/reference/events/list

相关方法的PHP文档(获取和设置同步令牌)位于:https://developers.google.com/resources/api-libraries/documentation/calendar/v3/php/latest/class-Google_Service_Calendar_Events.html