12

如何获取两个特定日期之间的所有事件。例如,我只想获取1st of March 2013&之间的事件28th of March 2013

我正在使用谷歌日历 API v3。而在 Google Calendar API v1 中,可以使用 start-min 和 start-max 在 2 个日期之间进行搜索。我想知道 Google Calendar API v3 中这两个参数的替代品是什么?

4

2 回答 2

20

好的,我得到了答案。Google API V3 中的新参数是timeMin&timeMax过滤两个日期之间的事件。

于 2013-03-20T09:02:20.450 回答
0

只需在获取事件提要之前将这两个参数添加到查询中:

// Start date from where to get the events
$query->setStartMin('2013-01-01');
// End date
$query->setStartMax('2013-03-20');

希望这可以帮助。

于 2013-03-20T06:59:09.267 回答