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