【发布时间】:2021-12-01 17:34:00
【问题描述】:
在 Azure B2C (https://docs.microsoft.com/en-us/graph/api/user-update?view=graph-rest-1.0&tabs=http) 上使用用户更新 Graph-API,我无法理解如何创建/更新身份结构。
{
"displayName": "User Name",
"givenName": "User",
"surname": "Name",
"userType": "Member",
"userPrincipalName": "cpim_uuid@mytenant.onmicrosoft.com",
...
"identities":[
{
"signInType" : "federated",
"issuer": "https://login.company.com/auth/realms/realm-qt
"issuerAssignedId" : "user.name@company.com"
},
{
"signInType" : "userPrincipalName",
"issuer": "mytenant.onmicrosoft.com"
"issuerAssignedId" : "cpim_uuid@mytenant.onmicrosoft.com"
}
]
}
我需要添加一条“signInType”为“federated”的记录,以及其他信息。 示例记录是在首次用户登录时通过与外部 IDP 集成自动创建的。
我想在第一次登录之前在 Azure B2C 上大量创建用户。
【问题讨论】:
标签: azure azure-ad-b2c azure-ad-graph-api idp