即使使用统一过滤器,我所属的 GET 统一组也会返回 AD 组

GET unified groups I’m member of is returning AD groups even with Unified filter

我正在使用此页面中的信息:

http://graph.microsoft.io/docs

其中给出了获取统一组的示例 REST 调用:

https://graph.microsoft.com/v1.0/me/memberOf?$/microsoft.graph.group?$filter=groupTypes/any(a:a%20eq%20'统一')

但是

这仍然返回我 AD 中的每个组,而不是仅过滤到统一组。

请改为尝试以下查询:

https://graph.microsoft.com/v1.0/me/memberOf/$/microsoft.graph.group?$filter=groupTypes/any(a:a%20eq%20'unified')