如何获取两个特定日期之间的所有事件。例如,我只想在1st of March 2013
和{}之间获取事件。 28th of March 2013
。
我正在使用Google Calendar API v3。在Google Calendar API v1中,有两个日期之间使用start-min& amp;启动最大。我想知道Google Calendar API v3中这两个参数的替换是什么?
答案 0 :(得分:18)
好的我得到了答案。 Google API V3中的新参数为timeMin
& timeMax
来过滤2个日期之间的事件。
答案 1 :(得分:0)
在获取活动Feed之前,只需将这两个参数添加到查询中:
// Start date from where to get the events
$query->setStartMin('2013-01-01');
// End date
$query->setStartMax('2013-03-20');
如需进一步参考,请参阅:Retrieve events occuring between a date range
希望这有帮助。