我正在尝试从 SharePoint 文件夹中获取所有文件。文件夹中有很多文件,所以我需要一些方法来获取它们。
这是我用于请求的代码:
$graph = new Graph();
$graph->setBaseUrl("https://graph.microsoft.com/")
->setApiVersion("beta")
->setAccessToken(session('accessToken'));
$children = $graph->createRequest('GET', '/drives/b!2{driveid}/root/children?$top=100')
->setReturnType(Model\DriveItem::class)
->execute();
响应不包括 anextlink
但该文件夹中有更多文件。当我将其更改为 时$top=500
,我只得到前 500 个项目。