在从 Google 事件 api 返回的事件 object 中,该地点有会议室

In returned event object from Google Event api, there is meeting room in the location

我想仔细检查 Google 事件 Object。 我试过 this API,return 如下所示。

{ 
   "kind":"calendar#event",
   "etag":"\"3159500823012000\"",
   "id":"xxx",
   "status":"confirmed",
   "htmlLink":"https://www.google.com/calendar/event?eid=xxx",
   "created":"2020-01-23T03:30:46.000Z",
   "updated":"2020-01-23T03:33:31.506Z",
   "summary":"meetingroom",
   "location":"Tokyo Tower, 4-chōme-2-8 Shibakōen, Minato City, Tōkyō-to 105-0011, Japan, 会議室B (test) (6), 会議室A (test) (4)",
   "creator":{ 
      "email":"jungmo.kang@xxxxx.com",
      "self":true
   },
...
}

Google 日历上的视图是这样的

属性 位置有会议室,这是正确的行为吗? 那么,你能告诉我如何在没有会议室的情况下获取位置吗?

出于文档目的,

根据@Jescanellas 的评论,房间是位置的一部分,不可配置。唯一的可能性是用代码删除它们。