有一种方法!要查看公共日历事件,请使用以下表单的链接:
https://www.google.com/calendar/event?eid={event-id}&ctz={timezone}
其中{event-id}是唯一的事件 ID,{timezone}是这些时区之一。
这是一个示例:链接到特定的公共日历事件。
如果您拥有此活动所在日历的编辑权限,您将能够编辑该活动并查看来宾列表。否则,您只会看到有关该事件的公开信息。
由于确定事件 ID 可能很困难,因此这里有一个小书签,当您编辑其详细信息页面时,它会生成指向您的 Google 日历事件的链接:
javascript:(function(){ try { window.prompt('Shareable link to this event:','https://www.google.com/calendar/event?eid='+document.getElementsByClassName('ep')[0].getAttribute('data-eid')) } catch (e) {alert("Use this bookmarklet to get a shareable link to a Google Calendar event when editing its Details page.")}})()
此书签的一个版本可与新的(截至 2017 年)Google 日历 UI 一起使用:
javascript:(function(){
window.prompt('Shareable link to this event:',
'https://www.google.com/calendar/event?eid='+
window.location.href.split("/").pop().split("?")[0])
})()
(也可能有用,如何链接到公共 Google 日历的特定日期:
https://www.google.com/calendar/embed?src={calendar-id}&mode=day&dates={yyyymmdd}%2F{yyyymmdd}
其中{calendar-id}是日历的 ID,{yyyymmdd}是您要链接到的日期。
可选参数包括时区和是否显示各项,例如:
&ctz=Asia/Taipei&showNav=0&showPrint=0&showCalendars=0
示例:链接到公共日历的某一天。)