Google Calendar REST API不返回标题和其他事件字段

问题描述 投票:1回答:1

除非我缺少某些内容,否则Google日历REST API GRT方法(https://developers.google.com/calendar/v3/reference/events/get)应该返回此结构(https://developers.google.com/calendar/v3/reference/events#resource)。

我需要获取事件标题和描述才能在我的应用程序中使用。我正在得到回应以下。

我已经尝试更改事件可见性(公共/私人)和可用性(忙/闲)。实际上,API不会显示具有免费可用性的事件,对此我也没有解决方案。

这里是事件编辑屏幕截图:https://www.screencast.com/t/X8bRS8kJDT

{
   "kind":"calendar#event",
   "etag":"\"3145149995624000\"",
   "id":"5fnlvcl2msab46p8roqbahhb6g",
   "status":"confirmed",
   "htmlLink":"https://www.google.com/calendar/event?eid=NWZubHZjbDJtc2FiNDZwOHJvcWJhaGhiNmcgZWQtYWRtaW4uY29tXzMwOHNycjdzdjdiM28xazRpdjZ2cm9mb3Y0QGc",
   "updated":"2019-11-01T02:23:17.812Z",
   "start":{
      "dateTime":"2019-11-11T09:30:00+11:00"
   },
   "end":{
      "dateTime":"2019-11-11T10:00:00+11:00"
   },
   "visibility":"private",
   "iCalUID":"[email protected]"
}

还有其他方法可以使用REST API获取日历事件详细信息,包括免费提供的日历事件详细信息吗?

谢谢。

rest google-calendar-api
1个回答
0
投票

您可以尝试指定要检索的字段,如下图所示:

enter image description here

或者您可以将“ *”作为下图检索所有值:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.