3

我正在创建一个可以将文件插入 Google Drive 并列出它的应用程序。我正在使用 Google Drive SDK v2 API。但我的问题是它没有列出不是通过我的应用程序上传的文件。如果我直接从 Google 驱动器上传,它不会在我的应用程序中列出。

这是列出文件的方法:

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();

            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);

        return result;
      }

我正在迭代这样的文件:

List<File> files = retrieveAllFiles(service);
        for(File f : files) {
            System.out.println("File Name : "+f.getOriginalFilename();
        }

谁能帮帮我?提前致谢 ...

4

1 回答 1

2

我认为您使用了错误的 oauth 范围,这可能https://www.googleapis.com/auth/drive.file会限制您的应用程序访问由您的应用程序创建或打开的文件,而您应该使用https://www.googleapis.com/auth/drive它来完全控制您的应用程序。

于 2013-03-26T12:01:41.130 回答