2

我想用 google docs api 创建一个空的电子表格,但出现错误:无法转换文档。

$xml = "--END_OF_PART\r\n".
        "Content-Type: application/atom+xml;\r\n\r\n".      
        "<?xml version='1.0' encoding='UTF-8'?>
        <entry xmlns=\"http://www.w3.org/2005/Atom\" xmlns:docs=\"http://schemas.google.com/docs/2007\">
          <category scheme=\"http://schemas.google.com/g/2005#kind\"
              term=\"http://schemas.google.com/docs/2007#spreadsheet\"/>
            <title>".$name."</title>
        </entry>\r\n".  
        "--END_OF_PART\r\n".
        "Content-Type: text/csv;\r\n\r\n".
        "--END_OF_PART--\r\n";

这个 xml 被发送到谷歌的服务器,带有参数 convert=true 然后我得到了错误:无法转换文档。当我使用 mime 类型“application/vnd.oasis.opendocument.spreadsheet”而不是“text/csv”并且不添加参数 convert=true 时,我得到一个内部错误。

4

1 回答 1

0

Docs List API v3 is deprecated. Use Google Drive API instead. You can create a file with the insert call:

https://developers.google.com/drive/v2/reference/files/insert

the mimeType for a native spreadsheet would be:

application/vnd.google-apps.spreadsheet

于 2012-11-23T22:06:19.617 回答