有没有办法通过 Google 日历 API 发送活动邀请而不需要客户身份验证
Is there a way to send an invite to event via Google calendar API without customer authentication
我正在此处查看 Google API 文档:https://developers.google.com/calendar/api/quickstart/nodejs and here: https://developers.google.com/calendar/api/v3/reference/events/insert#node.js
在这两种情况下——除非我正在做一些可能的事情——我被要求授权请求,但我想知道是否有办法在没有授权的情况下发送日历邀请?
如果您查看文档页面 events insert,您会注意到以下内容
这意味着该方法使用私人用户数据并且需要授权才能使用它。您无法在无法访问日历的情况下创建活动。
我正在此处查看 Google API 文档:https://developers.google.com/calendar/api/quickstart/nodejs and here: https://developers.google.com/calendar/api/v3/reference/events/insert#node.js 在这两种情况下——除非我正在做一些可能的事情——我被要求授权请求,但我想知道是否有办法在没有授权的情况下发送日历邀请?
如果您查看文档页面 events insert,您会注意到以下内容
这意味着该方法使用私人用户数据并且需要授权才能使用它。您无法在无法访问日历的情况下创建活动。