如何从Azure Graph API json响应中筛选字符串数组



我正在尝试筛选出以下Azure GRAPH API响应中存在的标签:

{
"displayName": "BlazorApp2-AuthenticationAAD",
"tags": [
"WindowsAzureActiveDirectoryIntegratedApp"
]
},

我想为Rest调用设置一个筛选器,以显示其中包含以下标记的应用程序。有人能帮助我使用Rest调用吗。

您可以使用:

GET https://graph.microsoft.com/v1.0/applications?$filter=tags/any(c:c eq 'WindowsAzureActiveDirectoryIntegratedApp') 

以筛选包含该标记的应用程序。

最新更新