如何从 Azure Graph API json 响应中筛选字符串数组?
How to filter an array of strings from Azure Graph API json response?
我正在尝试过滤掉出现在以下 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')
过滤包含该标签的应用
我正在尝试过滤掉出现在以下 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')
过滤包含该标签的应用