创建空的 Google 文档/电子表格的最佳方法是什么?我现在正在使用 GData 文档/电子表格 API,但我更喜欢使用 Drive API。是否有一个 mimetype 会创建一个空的 Google Doc/Google 电子表格?
问问题
2323 次
1 回答
5
As Claudio mentioned in the comment, you can see the list of the supported MIME types in the other question. In practice, its very easy to create a blank doc. For example:
POST https://www.googleapis.com/drive/v2/files
{
'title' : 'My new document',
'mimeType':'application/vnd.google-apps.document'
}
于 2012-08-03T23:51:16.507 回答