我正在使用Azure AD B2C本地帐户仅登录自定义策略(即,不登录)。我需要使用电子邮件作为登录id,而不是UPN。我找不到任何Microsoft指南来更改此要求的自定义策略。
唯一的链接,我可以看到https://docs.microsoft.com/en-us/azure/active-directory/authentication/howto-authentication-use-email-signin (微软预览)和https://github.com/azure-ad-b2c/samples/tree/master/policies/username-or-email,但它没有太多的帮助,我需要改变什么,在本地帐户上,只有自定义策略登录使用替代登录电子邮件-id。有人能解释一下这件事吗?
发布于 2021-08-06 13:42:27
创建用户时,将公司电子邮件添加到身份集合中。
"identities": [
{
"signInType": "emailAddress",
"issuer": "yourB2C.onmicrosoft.com",
"issuerAssignedId": "username@<company domain name>.com"
}
]https://stackoverflow.com/questions/68675686
复制相似问题