我想开发一个显示搜索结果的应用程序。为了进行测试,我将几个文件上传到了根站点中的默认文档库。我可以通过以下请求看到这些文件:
https://graph.microsoft.com/v1.0/sites/root/drive/root/search(q='Test')
但是,要求之一是查询应该匹配文件,而不管文件存储在哪个站点。据我了解,the documentation我应该使用这样的东西:
https://graph.microsoft.com/v1.0/me/drive/search(q='Test')
查询与第一个示例相同,但是结果为空。
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(driveItem)",
"value": []
}