我只是想使用Google Drive SDK,以便使用JavaScript将简单文件上传到我的驱动器。该文件已存储在我的计算机上,我只想读取该文件,然后将其上传到我的驱动器。
提前致谢。
答案 0 :(得分:2)
metadata
对象中,parents
属性可用于将文件上传到特定文件夹。这不是强制性的。const fileToUpload = inputUpload.files[0];
var metadata = {
name: fileToUpload.name,
mimeType: fileToUpload.type
//parents: ["folderID"]
};
var formData = new FormData();
formData.append( "metadata", new Blob( [JSON.stringify( metadata )], {type: "application/json"} ));
formData.append( "file", fileToUpload );
fetch( "https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart", {
method: "POST",
headers: new Headers({ "Authorization": "Bearer " + gapi.auth.getToken().access_token }),
body: formData
}).then( function( response ){
return response.json();
}).then( function( value ){
console.log( value );
});
为了使此代码起作用,您必须获得 OAuth 2.0 的授权。
无论如何,已经有人回答了 similar question。
答案 1 :(得分:-2)
以下是quickstart of javascript in official documentation,其中涵盖了您想要的内容。