我正在针对OneDrive REST API进行编码,并且正在点击https://api.onedrive.com/v1.0/drive/root/children
端点。我可以清楚地看到返回的JSON显示文档的childCount
有三个folder
。
我试图弄清楚如何构建我的端点以显示Document下的子文件夹。
答案 0 :(得分:1)
您有两种选择:
Documents
的孩子
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