如何使用一个驱动器API获取One Drive业务根目录中的项目?

时间:2016-04-07 12:08:11

标签: office365 onedrive office365api office365-restapi

我可以将用户登录到一个驱动器企业帐户。我也可以获取驱动器详细信息。但是如何在一个驱动器企业帐户的根目录中获取文件和文件夹的详细信息?

2 个答案:

答案 0 :(得分:1)

使用/ root / children路径访问驱动器的尾部:

https://api.onedrive.com/v1.0/drive/root/children?$select=name

答案 1 :(得分:1)

试试这个

GET /drive/root/children

https://dev.onedrive.com/items/list.htm

可能的回复如

HTTP/1.1 200 OK
Content-Type: application/json

{
  "value": [
    {"name": "myfile.jpg", "size": 2048, "file": {} },
    {"name": "Documents", "folder": { "childCount": 4} },
    {"name": "Photos", "folder": { "childCount": 203} },
    {"name": "my sheet(1).xlsx", "size": 197 }
  ],
  "@odata.nextLink": "https://..."
}