Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
11,868 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
DriveItemSearchCollectionPage children = graphClient .drives("drivesId") .root() .itemWithPath("itemWithPath") .search(DriveItemSearchParameterSet.newBuilder().withQ("file").build()) .buildRequest() .get();
这个方法获取指定文件夹下的匹配文件,一直没有问题,今天下午突然不行了,中午还是正常的