Google Drive API Get即使使用MEDIA设置ALT也不会返回JSON数据

时间:2018-08-14 11:49:35

标签: google-drive-api

当前,我正在使用Google Drive API,因此将数据保存到Google Drive的AppData空间中,现在我想获取该数据(保存在AppData空间中)。我使用了Google Drive GET API,范围为:

drive.readonly, drive.appdata, 驾驶', drive.file,

drive.files.get({
 auth: auth,
 fileId: fileId,
 alt: 'media'
}, function(err, response){
if(err){
logger.error("ERROR GET API: " + err);
return;
}
callback(response);
});

返回值始终为空。据说它将返回json文件。我可以知道为什么它没有返回准确的数据吗?

谢谢!

0 个答案:

没有答案