我正在使用Klipfolio,并希望创建一种可视化效果,以从我的Google日历中提取从当日起6个月内发生的事件,以及当天发生的事件。
我尝试了以下查询:
https://www.googleapis.com/calendar/v3/calendars/xyz@group.calendar.google.com/events?timeMin= {date.format(“ yyyy-MM-dd'T'00:00:00Z”)}&timeMax = {date.addMonths(6).format(“ yyyy-MM-dd'T '23:59:59Z“)}&singleEvents = true
但是,它将所有发生的事件从现在拉到+6个月。我的查询错在哪里?
答案 0 :(得分:1)
当前,您将timeMin值设置为今天,并将timeMax值设置为+6个月,因此这将拉动这些日期之间的所有时间。如果您将timeMin值设置为与timeMax值相同,则它将仅在从今天起+6个月的那天发生事件。请注意,小时,分钟和秒仍为00:00:00:
https://www.googleapis.com/calendar/v3/calendars/xyz@group.calendar.google.com/events?timeMin= {date.addMonths(6).format(“ yyyy-MM-dd'T'00:00:00Z”)}&timeMax = {date.addMonths(6).format(“ yyyy- MM-dd'T'23:59:59Z“)}&singleEvents = true