Я пытался загрузить файлы в OneDrive с помощью многостраничного запроса. Я пробовал много способов, но никто из них не работал.Загрузка многостраничного файла с помощью клиента Apache REST
Запрос имеет вид: -
POST /drive/items/{folder-id}/children
Content-Type: multipart/related; boundary="A100x"
--A100x
Content-ID: <metadata>
Content-Type: application/json
{
"name": "newfile.txt",
"file": {},
"@content.sourceUrl": "cid:content",
"@name.conflictBehavior": "rename"
}
--A100x
Content-ID: <content>
Content-Type: text/plain
Contents of the file to be uploaded.
--A100x--
Я пробовал много способов. Фрагмент, который я сделал для этого, добавлен ниже. Любая помощь будет оценена по достоинству.
Отрывок: -
HttpClient httpClient = HttpClientBuilder.create().build();
URIBuilder uriBuilder = new URIBuilder(URI);
HttpPost post = new HttpPost(uriBuilder.build());
MultipartEntityBuilder builder = MultipartEntityBuilder.create();
builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);
Charset chars = Charset.forName("utf-8");
builder.setCharset(chars);
post.setEntity(builder.build());
builder.addPart("content", new FileBody(new File("/home/myfiles/test"), ContentType.APPLICATION_OCTET_STREAM, "test"));
builder.addPart("metadata", new StringBody(metaJson, ContentType.APPLICATION_JSON));
post.setHeader("Content-Type", "multipart/form-data");
post.addHeader("Authorization", "Bearer " + ACCESS_TOKEN);
try {
HttpResponse response = httpClient.execute(post);
if (response.getStatusLine().getStatusCode() == 200) {
br = new BufferedReader(new InputStreamReader((response.getEntity().getContent())));
responseBuilder = new StringBuilder();
while ((output = br.readLine()) != null) {
responseBuilder.append(output);
}
} else {
System.out.println("Failed : HTTP error code : " + response.getStatusLine().getStatusCode());
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
URI: