使用 google doc api 检索共享权限
我尝试使用 java 访问以下文档:
- doc 只能从具有链接的域内的人员访问
- doc 只能从具有链接的域外的人员访问
这些都是 google 文档中的可共享设置,但我无法理解调用 api 来检索它们。感谢您抽出时间。
Im trying to access the following docs using java:
- doc is only accessible from people within the domain that have the link
- doc is only accessible from people outside the domain that have the link
These are all sharable settings within google docs but i cant seen to figure out the api call to retrieve them. Thank you for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要访问文档列表 API具体来说,您需要接收以下 ACL:有问题的资源,并检查
元素的
元素中是否存在type='domain'< /code> 有问题。
要在 Java 中执行此操作,您可以使用 Google API Java 客户端库。请参阅 此示例提供了如何向文档列表 API 发出请求的示例。
To do this, you will need to access the Documents List API, specifically, you will need to receive the ACL of the resource in question, and check the
<gAcl:scope>
element of the<entry>
elements for one that has thetype='domain'
in question.To do this in Java, you can use the Google API Java client library. See this sample for an example of how to make a request to the Documents List API.