docs api v2 v.v3

时间:2013-10-17 06:22:06

标签: google-drive-api google-docs-api

我可以找到在https://developers.google.com/google-apps/documents-list/v2/developers_guide_protocol插入元数据文件所需的API调用,这是v2。 v3的等效页面未显示等效信息。

有人知道这是从v2改为v3,还是格式相同?

POST /feeds/folders/private/full/folder%3Afolder_id HTTP/1.1
Host: docs.google.com
Authorization: <your authorization header here>
Content-Length: 292
Content-Type: application/atom+xml

<?xml version='1.0' encoding='UTF-8'?>
<atom:entry xmlns:atom="http://www.w3.org/2005/Atom">
  <atom:category scheme="http://schemas.google.com/g/2005#kind"
      term="http://schemas.google.com/docs/2007#presentation" label="presentation"/>
  <atom:title>new preso</atom:title>
</atom:entry>

2 个答案:

答案 0 :(得分:0)

仅使用元数据(v3)创建文档的文档位于:https://developers.google.com/google-apps/documents-list/#creating_a_new_document_or_file_with_metadata_only

我看到的唯一区别是:

  • 您应该使用可从Feed
  • 获取的resumable-create-media链接
  • 您应该设置标题

    X-Upload-Content-Length: 0
    

答案 1 :(得分:-1)

该版本已弃用。使用Drive SK。这page解决了您的问题吗?他们有一个游乐场来尝试这些方法。