我正在尝试编写一个程序,用于使用Google Drive API列出我的Google云端硬盘中的文件。
我为自己的帐户创建了一个服务帐户。
这是我创建的服务对象
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":[]}
有人可以帮助我吗,我错过了什么吗?
感谢。
答案 0 :(得分:4)
您使用的是application-owned account,它类似于普通帐户,但属于应用而非用户。
应用程序拥有的帐户没有特殊权限,并且作为常规帐户,只能访问他们拥有的文件或与他们共享的文档。因此,如果您的常规帐户拥有这些文件,则服务帐户将无法列出这些文件。
您可以使用域范围委派来允许您的应用代表Google Apps域中的其他用户访问文件: