我试图添加一个新的电子表格到谷歌驱动器,使用谷歌驱动器Api。我不知道使用哪个提要来添加电子表格。要将新的工作表添加到现有的电子表格中,我的WorksheetFeed
是:
WorksheetFeed = spreadsheet.Worksheets;
所以,要添加一个新的电子表格到Google Drive,我应该使用哪个提要?在示例中,使用DocumentsListQuery.documentsBaseUri
,但是当我尝试使用该提要时,我收到错误:Execution of request failed: https://docs.google.com/feeds/default/private/full
如何使用http api:
- post url: "https://www.googleapis.com/drive/v2/files"
- post数据必须至少包含:"mimeType":"应用程序/vnd.google-apps.spreadsheet",'title': 'hello spreadsheet'
- response.data。id给出新的电子表格id。
请注意,目前这将创建一个常规的(旧的)工作表,而不是谷歌最近发布的"新工作表"。