2012-08-14 86 views
2

我可以使用JavaScript谷歌API來authentifie我的web應用程序,並在谷歌雲端硬盤中創建新的文件新的谷歌雲端硬盤文件,因爲它解釋in this post創建文本內容(JavaScript)

function createNewFile() { 
    gapi.client.load('drive', 'v2', function() { 
     var request = gapi.client.request({ 
      'path': '/drive/v2/files', 
      'method': 'POST', 
      'body':{ 
       "title" : "test.txt", 
       "description" : "Some" 
      } 
     }); 
     request.execute(function(resp) { console.log(resp); }); 
    }); 
} 

它在創建一個空文件駕駛。但我不知道如何通過添加文本內容來創建新的非空文件(例如「blablabla」)。有人可以幫幫我嗎 ?

+0

有一個掠奪在這[回答](http://stackoverflow.com/questions/10330992/authorization-of-google-drive-using-javascript/10331393#10331393)。 – Alain 2012-08-14 18:01:37

回答