使用Microsoft Graph查询AzureAD Graph扩展属性 [英] Querying AzureAD Graph extension attributes with Microsoft Graph

查看:62
本文介绍了使用Microsoft Graph查询AzureAD Graph扩展属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

由于现在已弃用,因此我正在从Azure AD Graph API迁移到Microsoft Graph的过程中.以前,可以使用 Microsoft.Azure.ActiveDirectory.GraphClient .GetExtendedProperties(); 调用来针对用户访问扩展属性,例如:

  var client = new ActiveDirectoryClient(serviceRoot,async()=>等待GetToken());var user =等待客户端.Users[用户ID ..."].ExecuteAsync();var属性= user.GetExtendedProperties(); 

我需要使用 Microsoft Graph 中的等效调用来复制此代码.

我查看了

C#代码示例:

  var user =等待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扩展属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆