I have a lot of shared Files and Folders from different users in OneDrive (Personal or Business). I want to perform search on the shared items. As we can search on the personal resource by below code/API call:
var response = await client.Me.Drive.Root.Search(searchText).Request().GetAsync();
Or
https://dev.onedrive.com/items/search.htm
How can we perform search on SharedWithMe items?
答案 0 :(得分:1)
sharedWithMe
功能不支持搜索。只能以这种方式搜索用户驱动器中的本地项目。
我建议对此功能提出UserVoice请求(这些请求是主动跟踪的,也是增强功能的主要来源)。
答案 1 :(得分:1)
您实际上可以在驱动器上调用搜索而不是驱动器的根目录,这将搜索本地文件以及与用户共享的任何其他文件。