protected InputStream downloadLatestMetadataZip(String token) throws UnirestException {
final HttpResponse<InputStream> response = Unirest.get(metadataUrl + "file/latestMeta")
.header("X-Auth-Token", token)
.asBinary();
if (response.getStatus() == 404) return null;
return response.getBody();
}
DownloadFactory.java 文件源码
java
阅读 25
收藏 0
点赞 0
评论 0
项目:tools
作者:
评论列表
文章目录