excel Microsoft Graph API:添加行返回错误

yzckvree  于 2023-08-08  发布在  其他
关注(0)|答案(1)|浏览(107)

我正在尝试使用Microsoft Graph向Office 365 Excel工作表中插入行。
正在发布

{
  "values": "[[1, 2],[4, 5]]"
}

字符串

第一个月
如这里的“实施例1”所示:https://learn.microsoft.com/en-us/graph/api/table-post-rows?view=graph-rest-1.0&tabs=http
返回错误请求400:

{
    "error": {
        "code": "InvalidArgument",
        "message": "The argument is invalid or missing or has an incorrect format.",
        "innerError": {
            "code": "invalidArgument",
            "message": "The argument is invalid or missing or has an incorrect format.",
            "date": "2023-07-19T16:17:33",
            "request-id": "<request-id>",
            "client-request-id": "<client-request-id>"
        }
    }
}


我不确定哪个参数无效、丢失或格式不正确。有什么想法吗?

iszxjhcz

iszxjhcz1#

看起来像是文档中的bug。如果从“values”值中删除引号,POST就可以工作。

相关问题