我想用 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 时,我得到一个内部错误。