2014-07-16 41 views
0

我正在使用python與GAE,我試圖在specfic文件夾中創建文件。 這裏是我一直在使用的代碼:鍵入錯誤:在驅動器中的特定文件夾中創建文件時,鍵必須是字符串

... 
    drive= build('drive', 'v2', http=http) 

    body = { 
     'title': 'title', 
     'description': 'description', 
     'mimetype': 'text/plain' 
    } 

    body['parents'] = [{id: str(drive_state.folderid)}] 
    file = drive.files().insert(body=body).execute() 
    ... 

我拿到鑰匙必須是字符串類型的錯誤(在上線)。 我做錯了什麼?

回答

相關問題