谷歌日历api不返回重复事件

本文关键字:事件 返回 日历 api 谷歌 | 更新日期: 2023-09-27 18:01:12

我正试图从我的谷歌日历中提取一个基于日期范围的事件列表,其中大多数是重复发生的事件。以下代码返回在日期范围内输入的事件,但不返回在该日期范围内发生的重复事件。知道我做错了什么吗?

EventQuery eventQuery = new EventQuery(calendarUri);
eventQuery.SingleEvents = true;
eventQuery.StartDate = startDate;
eventQuery.EndDate = endDate;
EventFeed resultsFeed = calendarService.Query(eventQuery);

谷歌日历api不返回重复事件

请注意,Query只返回25个条目+NextChunk还有更多。您需要在NextChunk上再次查询。

EventFeed calFeed = service.Query(query) as EventFeed;
// now populate the calendar
while (calFeed != null && calFeed.Entries.Count > 0)
{
    // look for the one with dinner time...
    foreach (EventEntry entry in calFeed.Entries)
    {
        this.entryList.Add(entry); 
        if (entry.Times.Count > 0)
        {
            foreach (When w in entry.Times) 
            {
                dates.Add(w.StartTime); 
            }
        }
    }
    // just query the same query again.
    if (calFeed.NextChunk != null)
    {
        query.Uri = new Uri(calFeed.NextChunk); 
        calFeed = service.Query(query) as EventFeed;
    }
    else
        calFeed = null;
}

此外:When包含有关定期事件的条目数。需要寻找合适的。