Mircrosoft Graph API:列出驱动器中的所有DriveItems:badRequest

时间:2019-07-15 09:08:53

标签: microsoft-graph

我正在使用以下方法获取共享点的驱动器,该驱动器将返回驱动器及其ID等。

GET https://graph.microsoft.com/v1.0/sites/mycompany.sharepoint.com:/sites/mysite:/drive

但是,以下调用返回“错误的请求,指定的URL无效”。有人知道我在做什么错吗?

GET https://graph.microsoft.com/v1.0/sites/mycompany.sharepoint.com:/sites/mysite:/drive/items

1 个答案:

答案 0 :(得分:0)

您可以像这样获得根文件夹

GET https://graph.microsoft.com/v1.0/sites/mycompany.sharepoint.com/sites/mysite/drive/root/children

请注意,mysite/drive是默认驱动器。

您可以使用

GET https://graph.microsoft.com/v1.0/sites/mycompany.sharepoint.com/sites/mysite/drives/{driveId}/root/children

标识特定的driveId。

没有端点可以一次从每个子文件夹获取驱动器中的所有项目以及每个文件。

这里是similar question供您参考。