【发布时间】:2019-03-29 16:00:19
【问题描述】:
根据the document,我可以使用以下 Graph API 列出 Office 365 组:
GET https://graph.microsoft.com/v1.0/groups
我有一个 C# Web 应用程序,并且有一个用于按 Group DisplayName 进行搜索的输入。知道如何根据 DisplayName 查询组吗?
我在 MS Graph Explorer 中尝试了以下 URL:https://graph.microsoft.com/v1.0/groups?$search="displayName:Test",但它不起作用。
我收到以下错误。
{
"error": {
"code": "Request_UnsupportedQuery",
"message": "This query is not supported.",
"innerError": {
"request-id": "35d90412-03f3-44e7-a7a4-d33cee155101",
"date": "2018-10-25T05:32:53"
}
}
欢迎提出任何建议。 提前致谢。
【问题讨论】: