要求
HTTP 要求
PUT https://www.googleapis.com/calendar/v3/calendars/calendarId/acl/ruleId
參數
參數名稱 | 值 | 說明 |
---|---|---|
路徑參數 | ||
calendarId |
string |
日曆 ID。如要擷取日曆 ID,請呼叫 calendarList.list 方法。如要存取目前登入使用者的主要日曆,請使用「primary 」字詞。
|
ruleId |
string |
ACL 規則 ID。 |
選用的查詢參數 | ||
sendNotifications |
boolean |
是否傳送日曆共用設定變更的通知。請注意,我們不會傳送移除存取權的通知。選用設定。預設值為 True。 |
授權
此要求需要具有下列範圍的授權:
範圍 |
---|
https://www.googleapis.com/auth/calendar |
詳情請參閱「驗證與授權」網頁。
要求主體
在要求主體中,提供具有以下屬性的 Acl 資源:
屬性名稱 | 值 | 說明 | 附註 |
---|---|---|---|
必要屬性 | |||
scope |
object |
這個 ACL 規則授予日曆存取權的程度。 | |
scope.type |
string |
範圍類型。可能的值包括:
default 」或公開範圍的權限,適用於任何已驗證或未驗證的使用者。 |
|
選用屬性 | |||
role |
string |
指派給範圍的角色。可能的值包括:
|
可寫入 |
scope.value |
string |
使用者/群組的電子郵件地址,或網域名稱 (視範圍類型而定)。「default 」類型省略。 |
可寫入 |
回應
如果成功,這個方法會在回應主體中傳回 Acl 資源。
範例
注意:這個方法適用的程式語言眾多,我們只在此提供部分程式碼範例,完整的支援語言清單請參閱用戶端程式庫頁面。
Java
使用 Java 用戶端程式庫。
import com.google.api.services.calendar.Calendar; import com.google.api.services.calendar.model.AclRule; // ... // Initialize Calendar service with valid OAuth credentials Calendar service = new Calendar.Builder(httpTransport, jsonFactory, credentials) .setApplicationName("applicationName").build(); // Retrieve the access rule from the API AclRule rule = service.acl().get('primary', "ruleId").execute(); // Make a change rule.setRole("newRole"); // Update the access rule AclRule updatedRule = service.acl().update('primary', rule.getId(), rule).execute(); System.out.println(updatedRule.getEtag());
Python
使用 Python 用戶端程式庫。
rule = service.acl().get(calendarId='primary', ruleId='ruleId').execute() rule['role'] = 'newRole' updated_rule = service.acl().update(calendarId='primary', ruleId=rule['id'], body=rule).execute() print updated_rule['etag']
PHP
使用 PHP 用戶端程式庫。
$rule = $service->acl->get('primary', 'ruleId'); $rule->setRole('newRole'); $updatedRule = $service->acl->update('primary', $rule->getId(), $rule); echo $updatedRule->getEtag();
小茹
使用 Ruby 用戶端程式庫。
rule = client.get_acl('primary', 'ruleId') rule.role = 'newRole' result = client.update_acl('primary', rule.id, rule) print result.etag
試試看!
使用下方的 APIs Explorer,針對即時資料呼叫這個方法,看看會有什麼結果。