gpt4 book ai didi

azure-active-directory - 如何使用 ms graph api 仅列出 AAD 中的安全组?

转载 作者:行者123 更新时间:2023-12-05 01:37:07 24 4
gpt4 key购买 nike

根据在线文档 https://learn.microsoft.com/en-us/graph/api/resources/groups-overview?view=graph-rest-1.0有四个 AAD 组:Office365、安全、支持电子邮件的安全和分发。

我正在使用以下内容列出组:

        graphGroupsPages = await graphServiceClient.Groups
.Request()
//.Filter(????) <= if yes, what should it be?
.GetAsync();

我看过一个如何列出 Office365(统一)组的示例。

如何仅列出安全组?

最佳答案

根据文档,您应该列出 mailEnabled 为 false 且 security Enabled 为 true 的组。

var graphGroupsPages = await graphServiceClient.Groups.Request().Filter("mailEnabled eq false and securityEnabled eq true").GetAsync();

关于azure-active-directory - 如何使用 ms graph api 仅列出 AAD 中的安全组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61347401/

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