我正在尝试使用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>"
}
}
}
型
我不确定哪个参数无效、丢失或格式不正确。有什么想法吗?
1条答案
按热度按时间iszxjhcz1#
看起来像是文档中的bug。如果从“values”值中删除引号,POST就可以工作。