3
我想通過使用Java APIm刪除Google文檔,但它工作正常,但文檔已在垃圾文件夾中解決。我希望文檔即使從垃圾桶中永久刪除。有人可以建議我解決這個問題嗎?這是我用來刪除文檔的代碼。永久刪除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();