gpt4 book ai didi

microsoft-graph-api - 如何使用 Microsoft Graph 按 DisplayName 搜索组?

转载 作者:行者123 更新时间:2023-12-04 14:33:00 25 4
gpt4 key购买 nike

根据the document ,我可以使用以下图形 API 列出 Office 365 组:
GET https://graph.microsoft.com/v1.0/groups
我有一个 C# Web 应用程序,并且有一个用于按 Group DisplayName 进行搜索的输入。知道如何根据 DisplayName 查询组吗?

我试过以下网址:https://graph.microsoft.com/v1.0/groups?$search="displayName:Test"在无效的 MS Graph Explorer 中。

我收到以下错误。

{
"error": {
"code": "Request_UnsupportedQuery",
"message": "This query is not supported.",
"innerError": {
"request-id": "35d90412-03f3-44e7-a7a4-d33cee155101",
"date": "2018-10-25T05:32:53"
}
}

欢迎任何建议。
提前致谢。

最佳答案

根据您的描述,我假设您想通过 DisplayName 搜索群组使用搜索参数。

基于 this document ,我们目前只能搜索消息和人员集合。所以我们不能使用搜索参数。

我们可以使用过滤器查询参数按 DisplayName 搜索组。例如,我们可以搜索 displayName 以 'Test' 开头的组,请求 url 如下所示:
https://graph.microsoft.com/v1.0/groups?$filter=startswith(displayName,'Test')

关于microsoft-graph-api - 如何使用 Microsoft Graph 按 DisplayName 搜索组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52982512/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com