Google Calendar JSON API:全天活动总会持续一天

时间:2016-01-25 12:34:31

标签: json google-calendar-api google-apps

最近 JSON API似乎总是在返回全天事件的时间跨度时添加一天。

在Google日历网络应用中显示: display of event in calendar

enter image description here

然而,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
}

1 个答案:

答案 0 :(得分:2)

在Calendar API中,开头是包含的,结尾是独占的。这就是为什么结束将是第二天(不包括在内)。