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 扩展属性


- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01