0

我正在尝试将 spring social google 库与 driveOperations() 实现一起使用。每当我尝试下载文件时,都会出现错误。我什至尝试下载公开共享的文件,但没有成功。身份验证正在工作。

我尝试了以下变体:

  Resource resource = google.driveOperations().downloadFile("uniquedocidhere");
 // another approach, no error, but getDownloadUrl() is null
  DriveFile driveFile = google.driveOperations().getFile("uniqeidhere");
  google.driveOperations().downloadFile(driveFile); // 404 
// finally trying it with a file drive v2 url gives an invalid URI error

我在示波器中添加了驱动器,所以我知道这不是问题。当我最初使用应用程序进行身份验证时,系统会提示我访问驱动器。

有问题的文件是谷歌电子表格,但我希望将它们下载为 excel 文件。使用股票 google SDK,这可以通过获取 exportLinks 然后从该 URL 获取来完成。虽然春季社交谷歌图书馆有

  final Map<String, String> links = driveFile.getExportLinks();

无法使用导出链接,因为 downloadFile 似乎不适用于此处的 URL(或者它们也可能为空)。

有谁知道如何使用 spring social google 和 drive 下载文件?我还没有找到任何涵盖驱动器的示例代码,只有 google plus 和任务。

目前使用 Spring Boot 1.3.3 / Spring 4.2.5 和 Spring Social Google 1.0.0 RELEASE

4

1 回答 1

0

Spring social google 不支持下载 Google Docs 文件,因为它们不是有用的格式。元数据上没有像其他文件类型那样下载文件的属性。

虽然 Google 自己的 SDK 可以处理下载导出的格式,如 Excel、CSV 和 PDF,但 spring social google 仅公开 getExportedLinks() 属性以查看 URL 和类型,但没有提供实际下载它们的方法。

我现在正在研究是否可以分叉它并添加方法来调用 Google drive v2 导出端点或获取访问令牌,以便我可以使用股票 google sdk 来获取文件。

__

我发现我可以通过调用 google.getAccessToken() 来访问访问令牌,其中 Google 在我的社交配置中创建为

@Bean
    @Scope(value = "request", proxyMode = ScopedProxyMode.INTERFACES)
    public Google google(final ConnectionRepository repository) {
        final Connection<Google> connection = repository.findPrimaryConnection(Google.class);
        if (connection == null)
            log.debug("Google connection is null");
        else
            log.debug("google connected");
        return connection != null ? connection.getApi() : null;
    }

然后我可以用这个下载文件:

public class LinkedTemplate extends AbstractOAuth2ApiBinding {
    private String accessToken;

    public LinkedTemplate() {
    }

    public LinkedTemplate(String accessToken) {
        super(accessToken);
        this.accessToken = accessToken;
    }

    class ExcelConverter extends ByteArrayHttpMessageConverter {
        public ExcelConverter() {
            MediaType t = new MediaType("application", "vnd.openxmlformats-officedocument.spreadsheetml.sheet");
            this.setSupportedMediaTypes(Arrays.asList(t));
        }
    }

    public void downloadLinkedFile(final String url, final String outputPath) throws IOException {
        //application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
        RestTemplate template = getRestTemplate();
        template.setMessageConverters(Arrays.asList(new ExcelConverter()));

        HttpHeaders headers = new HttpHeaders();
        headers.setAccept(Arrays.asList(new MediaType("application")));

        HttpEntity<String> entity = new HttpEntity<String>(headers);

        ResponseEntity<byte[]> response = template.exchange(
                url,
                HttpMethod.GET, entity, byte[].class, "1");

        if (response.getStatusCode() == HttpStatus.OK) {
            Files.write(Paths.get(outputPath), response.getBody());
        }
    }
}
于 2016-06-09T19:25:04.633 回答