java-Google云端硬盘文件列表API返回Items的空数组
作者:互联网
我正在尝试编写一个程序来使用Google Drive API列出我的Google Drive中的文件.
我已经为我的帐户创建了一个服务帐户.
这是我创建的服务对象
public static Drive getDriveService() throws GeneralSecurityException,
IOException, URISyntaxException {
HttpTransport httpTransport = new NetHttpTransport();
JacksonFactory jsonFactory = new JacksonFactory();
GoogleCredential credential = new GoogleCredential.Builder()
.setTransport(httpTransport)
.setJsonFactory(jsonFactory)
.setServiceAccountId(SERVICE_ACCOUNT_EMAIL)
.setServiceAccountScopes(
"https://www.googleapis.com/auth/drive")
.setServiceAccountPrivateKeyFromP12File(
new java.io.File(SERVICE_ACCOUNT_PKCS12_FILE_PATH))
.build();
Drive service = new Drive.Builder(httpTransport, jsonFactory, null)
.setApplicationName("FileListAccessProject")
.setHttpRequestInitializer(credential).build();
return service;
}
使用此服务对象,我将其称为file.list
private static List<File> retrieveAllFiles(Drive service)
throws IOException {
List<File> result = new ArrayList<File>();
Files.List request = service.files().list();
do {
try {
FileList files = request.execute();
System.out.println(files);
result.addAll(files.getItems());
request.setPageToken(files.getNextPageToken());
} catch (IOException e) {
System.out.println("An error occurred: " + e);
request.setPageToken(null);
}
} while (request.getPageToken() != null
&& request.getPageToken().length() > 0);
// System.out.println(result);
return result;
}
但这返回一个空的Items数组
{"etag":"\"8M2pZwE_fwroB5BIq5aUjc3uhqg/vyGp6PvFo4RvsFtPoIWeCReyIC8\"",
"kind":"drive#fileList","selfLink":"https://www.googleapis.com/drive/v2/files",
"items":[]}
有人可以帮我这个忙吗,我想念什么吗?
谢谢.
解决方法:
您所使用的application-owned account类似于普通帐户,但属于应用而非用户.
应用程序拥有的帐户没有特殊权限,并且作为常规帐户,只能访问其拥有的文件或与其共享的文档.因此,如果您的普通帐户拥有这些文件,则该服务帐户将无法列出它们.
您可以使用域范围的委托来允许您的应用代表Google Apps域中的其他用户访问文件:
https://developers.google.com/drive/delegation
标签:google-drive-api,java 来源: https://codeday.me/bug/20191031/1973651.html