从SharePoint Online列表中分页结果时,似乎发生了一个问题(至少在我的租户中); @odata.nextLink
中提供的网址无效,导致Error 500 (generalException)
。
我正在使用以下查询:
/beta/sites/[site URL],[site ID]/lists/[list ID]/items?expand=fields
第一页结果是正确的,@odata.nextLink
属性包含以下网址:
https://graph.microsoft.com/beta/sites/[site URL],[site ID]/lists/[list ID]/items?expand=fields&$skiptoken=Paged%3dTRUE%26p_ID%3d205
不幸的是,使用它会导致:
{
"error": {
"code": "generalException",
"message": "An unspecified error has occurred.",
"innerError": {
"request-id": "f7e33c22-15b5-4aac-b928-31c1a2bf04ae",
"date": "2018-01-11T09:48:57"
}
}
}
/beta
和/v1.0
端点都会发生这种情况。 ?expand=fields
O365的客户服务无法提供帮助,请将我指向MSDN论坛。
答案 0 :(得分:1)
感谢您关注Jakub。您发现我们的测试中出现了回归 - 幸好有一个快速解决方案,因此您不应再重现该问题。