我正在为 Office 365 使用统一图形 API v1.0,当我进行如下查询时:
https://graph.microsoft.com/v1.0/me/contacts
它只返回10 个联系人。但是当我这样做时:
https://graph.microsoft.com/v1.0/me/contacts/$count
我可以看到我有943 个联系人
我尝试通过执行以下操作强制 api 返回我的 943 联系人:
https://graph.microsoft.com/v1.0/me/contacts?$top=943
但我能检索到的最好的是499 个联系人。
有什么办法可以一次检索它们,如果没有,我可以用什么方式对它们进行分页?
我的文档参考是: http:
//graph.microsoft.io/docs/overview/query_parameters
和
http://graph.microsoft.io/docs/api-reference/v1.0/api/user_list_contacts
非常感谢你的帮助