我正在使用驱动器版本2将新文件插入google-drive。 使用client.files.insert()函数
将新文件插入谷歌驱动器我收到以下错误 错误:多部分中缺少正文属性。
var auth = new googleapis.OAuth2Client();
auth.setCredentials({
access_token: 'accesskey'
});
googleapis.discover('drive', 'v2').execute(function(err, client) {
client.drive.files.insert({ title: 'Test', mimeType: 'application/json' })
.withMedia('application/json', "Hello world")
.withAuthClient(auth)
.execute(function(error,result){
if(error){
console.log(error);
}else{
console.log(result);
}
});
以上代码存在于文档中:https://github.com/google/google-api-nodejs-client/
可以帮助我!!
答案 0 :(得分:0)
确保您已启用云端硬盘API: