OneDrive Rest API无法命中正确的端点以列出文档

时间:2017-01-23 17:36:20

标签: rest onedrive

我正在针对OneDrive REST API进行编码,并且正在点击https://api.onedrive.com/v1.0/drive/root/children端点。我可以清楚地看到返回的JSON显示文档的childCount有三个folder

我试图弄清楚如何构建我的端点以显示Document下的子文件夹。

1 个答案:

答案 0 :(得分:1)

您有两种选择:

  1. 按名称
  2. 查询Documents的孩子
  3. 按ID
  4. 查询Documents的孩子

    对于前者:

      

    https://api.onedrive.com/v1.0/drive/root:/Documents:/children

    对于后者:

      

    https://api.onedrive.com/v1.0/drive/items/<id-of-document>/children

    要将返回的子项限制为仅文件夹,您可以添加过滤器:

      

    https://api.onedrive.com/v1.0/drive/root:/Documents:/children?filter=folder%20ne%20null