Querying AzureAD Graph extension attributes with Microsoft Graph(使用 Microsoft Graph 查询 AzureAD Graph 扩展属性)
问题描述
我正在从 Azure AD Graph API 迁移到 Microsoft Graph,因为它现在已被弃用.以前,可以使用 Microsoft.Azure.ActiveDirectory.GraphClient .GetExtendedProperties(); 调用来针对用户访问扩展属性,例如:
var client = new ActiveDirectoryClient(serviceRoot, async () => await GetToken());var user = await client.Users["user id..."].ExecuteAsync();var 属性 = user.GetExtendedProperties();我需要用 Microsoft Graph 中的等效调用来复制它.
我查看了
C# 代码示例:
var user = await graphClient.Users["98****c9-f062-48e2-8ced-22cb6****ce"].要求().Select("id,extension_6d****fbf1fe4bc38a5a145520****89_policy,displayName").GetAsync();I am in the process of migrating away from Azure AD Graph API to Microsoft Graph since it is now deprecated. Previously it was possible to access extended properties against a user using Microsoft.Azure.ActiveDirectory.GraphClient .GetExtendedProperties(); call e.g:
var client = new ActiveDirectoryClient(serviceRoot, async () => await GetToken());
var user = await client.Users["user id..."].ExecuteAsync();
var properties = user.GetExtendedProperties();
I need to replicate this with equivalent calls in Microsoft Graph.
I have looked at the schemaExtensions endpoint, e.g:
GET all extensions:
/v1.0/schemaExtensions
But this doesn't appear to return the same extensions data that the AD Graph Client did.
GET user with ext:
v1.0/users/[user id]?$expand=extensions&$select=id,extension_[application id]_myExtension,onPremisesExtensionAttributes,displayName,jobTitle,identities
Where extension_[application id]_myExtension is an example extension in the format:
extension_appid_extensionname
And this doesn't return the custom extension data for the user (other properties work fine however).
How can we migrate extended properties from AD Graph Client to Microsoft Graph?
SchemaExtensions is different from extensionProperty. What you mentioned should be extensionProperty in Microsoft Graph.
You can use List extensionProperties to get all extensions.
Your request v1.0/users/[user id]?$expand=extensions&$select=id,extension_[application id]_myExtension,onPremisesExtensionAttributes,displayName,jobTitle,identities should be correct.
Please make sure that the application id should remove all -. The extension property format is extension_[application id without "-"]_myExtension.
For example:
GET https://graph.microsoft.com/v1.0/me?$select=id,extension_6d****fbf1fe4bc38a5a145520****89_policy,displayName
Response:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users(id,extension_6d****fbf1fe4bc38a5a145520****89_policy,displayName)/$entity",
"id": "98****c9-f062-48e2-8ced-22cb68****ce",
"displayName": "Allen Wu",
"extension_6d****fbf1fe4bc38a5a145520****89_policy": "readwrite"
}
The C# code sample:
var user = await graphClient.Users["98****c9-f062-48e2-8ced-22cb6****ce"]
.Request()
.Select("id,extension_6d****fbf1fe4bc38a5a145520****89_policy,displayName")
.GetAsync();
这篇关于使用 Microsoft Graph 查询 AzureAD Graph 扩展属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Microsoft Graph 查询 AzureAD Graph 扩展属性
基础教程推荐
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
