Google 文档 API 创建一个空文档

Google Docs API create an empty document

我现在尝试使用 Ggoogle Docs API 和我的内容创建一个文档,但每次我创建它时,它都会出错,我应该怎么做才能解决这个问题?

我使用 google 示例中的相同代码来执行此操作。 link to example

我的内容示例:

      {
        "title": "testitesti",
        "body": {
          "content": [
            {
              "endIndex": 1,
              "sectionBreak": {
                "sectionStyle": {
                  "columnSeparatorStyle": "NONE",
                  "contentDirection": "LEFT_TO_RIGHT",
                  "sectionType": "CONTINUOUS"
                }
              }
            },
            {
              "startIndex": 1,
              "endIndex": 6,
              "paragraph": {
                "elements": [
                  {
                    "startIndex": 1,
                    "endIndex": 6,
                    "textRun": {
                      "content": "test\n",
                      "textStyle": {}
                    }
                  }
                ],
                "paragraphStyle": {
                  "namedStyleType": "NORMAL_TEXT",
                  "direction": "LEFT_TO_RIGHT"
                }
              }
            }
          ]
        }
      }

谢谢

documents.create 将始终创建空白文档:

Creates a blank document using the title given in the request. Other fields in the request, including any provided content, are ignored.

如果您想使用document resource properties, use documents.batchUpdate向您的文档添加内容。