最近 JSON API似乎总是在返回全天事件的时间跨度时添加一天。
然而,JSON API返回的是:
{
"kind": "calendar#event",
"etag": "\"2896554426340000\"",
"id": "...",
"status": "confirmed",
"htmlLink": "https://calendar.google.com/calendar/event?eid=...",
[...]
"summary": "...",
[...]
"start": {
"date": "2016-02-01"
},
"end": {
"date": "2016-02-02"
},
[...]
"iCalUID": "...@google.com",
"sequence": 0
}
答案 0 :(得分:2)
在Calendar API中,开头是包含的,结尾是独占的。这就是为什么结束将是第二天(不包括在内)。