我想打電話給谷歌API方法drive.files.insert建立在谷歌雲端硬盤中的文件夾這樣的請求(使用谷歌的API對於JavaScript客戶端庫):指定請求主體在谷歌API調用(使用谷歌API客戶端JavaScript庫)
var request = gapi.client.drive.files.insert({'convert': 'false', 'ocr': 'false'});
request.execute(function(resp) { console.log(resp); });
的問題是,我需要指定在請求主體的一些參數,可以例如:
{
"title":"testFolder",
"description":"hello world",
"mimeType":"application/vnd.google-apps.folder"
}
但我無法弄清楚如何指定這些參數Google API客戶端JavaScript的圖書館。有什麼建議我可以做到這一點?
非常感謝,所以我們需要使用'gapi.client.request',如果我們想發送請求與身體 – KiL 2012-08-07 05:24:28
有沒有一個解決方案,而不使用gapi.client.request? – Eduardo 2013-12-17 18:13:17