gpt4 book ai didi

google-docs - 永久删除 Google 文档

转载 作者:行者123 更新时间:2023-12-04 23:43:22 25 4
gpt4 key购买 nike

我正在尝试使用 Java API 删除 Google 文档,它工作正常,但该文档正在垃圾文件夹中。我希望该文档甚至从垃圾箱中永久删除。有人可以建议我解决这个问题的方法吗?这是我用来删除文档的代码。

    DocsService docsService = new DocsService(domain);
URL docURL = new URL("https://docs.google.com/feeds/default/private/full/"+resourceId+"?xoauth_requestor_id=" + loginUser);//No I18N
DocumentListEntry sd=docsService.getEntry(docURL, DocumentListEntry.class);
sd.delete();

最佳答案

永久删除文件等同于使用查询参数“delete=true”(跳过垃圾)向文件的编辑 URL 发送 DELETE 请求:

DocsService docsService = new DocsService(domain);
URL docURL = new URL(
"https://docs.google.com/feeds/default/private/full/"+resourceId+"?xoauth_requestor_id=" + loginUser + "&delete=true");
docsService.delete(docURL, "<ENTRY'S ETAG>");

如果你想绕过“etag”检查,你可以传递特殊值“*”

关于google-docs - 永久删除 Google 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10128468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com