Google表格API V4 - 自动填充错误 - 没有ID为

时间:2017-04-13 14:31:20

标签: google-sheets google-spreadsheet-api google-sheets-api

我正在尝试使用AutoFillRequest对象创建SourceAndDestination来描述要自动填充的区域。我已经使用GridRange对象测试了自动填充请求,一切正常,但似乎无法使SourceAndDestination正常工作。这是一个例子,我试图将第一行自动填充2行。

HTTP POST

https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}:batchUpdate

请求正文

{
  "requests": [
    {
      "autoFill": {
        "sourceAndDestination": {
          "dimension": "ROWS",
          "fillLength": 2,
          "source": {
            "sheetId": 1150108545,
            "endRowIndex": 1,
            "startRowIndex": 0
          }
        },
        "useAlternateSeries": false
      }
    }
  ]
}

响应的错误代码为400:

  

message ="无效请求[0] .autoFill:没有id为0&#34的网格; status =   " INVALID_ARGUMENT"

1 个答案:

答案 0 :(得分:2)

很抱歉,这是服务器上的错误。它现在已经修复,所以上面应该可行。