我正試圖遵循this指南,通過Google API在Google雲端硬盤上進行可恢復的上傳。如何使用gapi和可恢復的上傳將文件上傳到Google驅動器?
這是我的代碼,您可以看到它會根據指南要求提供2個請求,第一部分創建元數據,然後使用位置開始上傳帶有第一個請求創建的會話的文件。
const file = new File(['Hello, world!'], 'hello world.txt', { type: 'text/plain;charset=utf-8' });
const contentType = file.type || 'application/octet-stream';
const reqMetadata = gapi.client.request({
'path': 'upload/drive/v3/files',
'method': 'POST',
'params': { 'uploadType': 'resumable' },
'headers': {
'X-Upload-Content-Type': file.type,
'X-Upload-Content-Length': file.size,
'Content-Type': 'application/json; charset=UTF-8'
},
'body': {
'name': file.name,
'mimeType': contentType,
'Content-Type': contentType,
'Content-Length': file.size
}
});
reqMetadata.execute((respMetadata, rawRespMetadata: any) => {
const locationUrl = JSON.parse(rawRespMetadata).gapiRequest.data.headers.location;
const reader = new FileReader();
reader.onload = (e) => {
const reqFile = gapi.client.request({
'path': locationUrl,
'method': 'PUT',
'headers': {
'Content-Type': file.type,
'Content-Length': file.size
},
'body': reader.result
});
reqFile.execute(respFile => {
console.log(respFile);
});
};
reader.readAsArrayBuffer(file);
});
什麼問題?
嗯,看來谷歌API庫不喜歡的文件/字節數組作爲身體上的gapi.client.request和他們截斷它拿走
什麼是傳遞文件的正確方法是什麼?我試過身體:文件和正文:reader.result但相同的結果
PS:gapi已經完全驗證&用auth2初始化,我可以創建文件/目錄。
編輯1:
GAPI庫只是jsoing的FileArray,因此JSON功能,將它修改爲一個空的對象,沒辦法讓它工作..必須有所缺失。
編輯2:
我做到了沒有GAPI工作,它正確地上傳文件,但我有一些問題與CORS
reader.onload = (e) => {
const authHeader = `Bearer ${this.auth.currentUser.get().getAuthResponse().access_token}`;
const headers = new Headers({
'Authorization': authHeader,
'Content-Type': file.type
});
const options = new RequestOptions({ headers });
const url = locationUrl;
this.http.put(url, reader.result, options).subscribe(res => {
observer.next(res);
}, (err) => {
observer.next({});
});
};
reader.readAsArrayBuffer(file);
如果有人有一些線索..
你使用的是什麼GAPI版本?此外,GAPI似乎正在使用sreams來上傳NodeJS中的ifles。你可以試試[this](https://github.com/dominictarr/browser-stream) –
應該是最新版本,你在哪裏找到關於使用流(套接字)的文檔? –
[Here](https://developers.google。com/drive/v3/web/manage-uploads),查看NodeJS示例。 –