除非我缺少某些内容,否则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获取日历事件详细信息,包括免费提供的日历事件详细信息吗?
谢谢。