Google Calendar API eventResponse.getHtmlLink() - 如何获取事件网址,允许"添加视频通话"

时间:2016-08-17 22:06:48

标签: google-api google-calendar-api

调用events:insert API后,我们会使用response.getHtmlLink()获取事件网址。

网址如下所示:https://www.google.com/calendar/event?eid= <event_id>

在浏览器中打开,它会显示活动视图,其中&#34;添加视频通话&#34;链接不存在:

enter image description here

但是,如果我从Google日历用户界面导航到此插入事件,则网址如下:https://calendar.google.com/calendar/render?pli=1#eventpage_6%7Ceid- <event_id> - 1-0-。

它显示了该事件的视图,其中包含&#34;添加视频通话&#34;链接目前:

enter image description here

如何通过API获取事件的可编辑视图(第二种情况)网址?

1 个答案:

答案 0 :(得分:0)

使用Events: get

enter image description here

我收到htmlLink回复:

{
"htmlLink": "https://www.google.com/calendar/event?eid=..."
}

点击该链接,我进入了这个页面:

enter image description here

如果您需要hangoutLink,请将其添加到&#39;字段&#39;同样。 enter image description here