我正在尝试使用Microsoft OneDrive API / SDK实现客户端分页。为此,我需要项目的总计数作为API的响应,并且基于传递给API的跳过和最大限制值,应该获取响应。
在List Items链接中,提到我们可以使用here提供的查询字符串来实现此目的。基于这个假设,我正在构建API调用的URL,如下所示:
string.Format("https://graph.microsoft.com/v1.0/me/drive/root/children?$skip={0}&$top={1}&$count=true",topValue*page, topValue)
根据上面提到的网址中的信息,一切似乎都很好,但我得到了#34;错误请求"来自服务器的错误消息如下所示:
{
"error": {
"code": "",
"message": "The query specified in the URI is not valid. Query option 'Skip' is not allowed. To allow it, set the 'AllowedQueryOptions' property on EnableQueryAttribute or QueryValidationSettings.",
"innerError": {
"request-id": "384693d7-65bd-4dc6-8d60-afde68e01555",
"date": "2017-04-25T10:28:15"
}
}
}
{
"error": {
"code": "",
"message": "The query specified in the URI is not valid. Query option 'Count' is not allowed. To allow it, set the 'AllowedQueryOptions' property on EnableQueryAttribute or QueryValidationSettings.",
"innerError": {
"request-id": "2188a06f-10cf-402c-9c49-bd296b9db614",
"date": "2017-04-25T10:29:05"
}
}
}
可以使用REST API或Microsoft Graph SDK实现吗?
PS:我看到了skipToken的概念,但它不符合我们的要求,因为它不会返回总计数,只支持增量导航。
答案 0 :(得分:1)
OneDrive工程师似乎已经回答了这个问题here:
OneDrive的分页模型与skip + take略有不同。 基本上你会进行如下查询:
获取https://graph.microsoft.com/v1.0/me/drive/root/children?$ top = 5
并且在响应中你应该看到通常的数组值 使用名为@ odata.nextLink的属性。你想要获取该URL 使用它请求下一页:
“@ odata.nextLink”: “https://graph.microsoft.com/v1.0/me/drive/root/children?$ skiptoken = ASDGASGSD”
GET https://graph.microsoft.com/v1.0/me/drive/root/children?$ skiptoken = ASDGASGSD
你继续这样做,直到你没有得到@ odata.nextLink。