2

我正在尝试找到 Java 的做法: https ://developers.google.com/google-apps/documents-list/#email_notifications_of_acl_changes

POST https://docs.google.com/feeds/default/private/full/document:12345/acl?send-notification-emails=false

这样在添加/修改 ACL 时不会发送电子邮件。

4

1 回答 1

1

您可以使用更新的 Drive API 执行相同的任务,该 API 在https://developers.google.com/drive/v2/reference/permissions/insert上有完整的 Java 示例。

你必须使用的setSendNotificationEmails方法Drive.Permissions.Insert

于 2012-07-12T17:27:18.223 回答