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

How to get items in the root of One Drive business using one drive API?

我可以将用户登录到一个驱动器业务 account.And我也可以获取驱动器 details.But我如何获取一个驱动器根目录中的文件和文件夹的详细信息公司帐户?

使用 /root/children 路径访问驱动器的详细信息:

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

试试这个

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://..."
}