使用Google Calendar API,我可以使一个用户的单个日历事件对访问其页面或帐户的所有其他用户可见吗?
答案 0 :(得分:0)
您必须修改资源的Access Control List
https://developers.google.com/calendar/v3/reference/acl
特别是scope.type
属性。
到以下其中之一
"default" - The public scope. This is the default value.
"user" - Limits the scope to a single user.
"group" - Limits the scope to a group.
"domain" - Limits the scope to a domain.
,然后是scope.value
-用户或组的电子邮件地址,或域的名称,具体取决于作用域类型。省略“默认”类型。
example应该是
PUT https://www.googleapis.com/calendar/v3/calendars/calendarId/acl/ruleId