在Google文档列表API中更改文档可见性

时间:2011-03-14 22:08:32

标签: google-docs google-docs-api

是否有人知道如何使用Google文档列表API更改文档可见性?

我想从私有更改为其他可见性(域中的所有用户都可以看到)。

1 个答案:

答案 0 :(得分:0)

使用ACL,您只需添加一个域,即可为您域中的所有用户显示该域。

在Java中:

public static void insertDomainAcl(DocsService client, DocumentListEntry entry) throws MalformedURLException, IOException, ServiceException{
    client.insert(new URL(entry.getAclFeedLink().getHref()), new AclScope(AclScope.Type.DOMAIN, "domain.com"), new AclRole("reader"));
}