"issuerUserId" 在 Azure AdB2C 的自定义策略中
"issuerUserId" in custom policy in Azure AdB2C
我正在研究 AdB2C 自定义策略。我在 B2C_1A_TrustFrameworkBase.xml 文件中添加了自定义策略所需的一些字段,但我不断收到此错误。
请告诉我我遗漏了什么以及“issuerUserId”是什么
尝试在 TrustFrameworkBase.xml
的 ClaimsSchema 中添加 ClaimType
<BuildingBlocks>
<ClaimsSchema>
...
<ClaimType Id="issuerUserId">
<DisplayName>Issuer User Id</DisplayName>
<DataType>string</DataType>
</ClaimType>
...
如果您使用“LocalAndSocial”入门包,issuerUserId 已在基本策略中。
在Facebook技术提供商中使用。
你可能删除了吗?
我正在研究 AdB2C 自定义策略。我在 B2C_1A_TrustFrameworkBase.xml 文件中添加了自定义策略所需的一些字段,但我不断收到此错误。
请告诉我我遗漏了什么以及“issuerUserId”是什么
尝试在 TrustFrameworkBase.xml
的 ClaimsSchema 中添加 ClaimType<BuildingBlocks>
<ClaimsSchema>
...
<ClaimType Id="issuerUserId">
<DisplayName>Issuer User Id</DisplayName>
<DataType>string</DataType>
</ClaimType>
...
如果您使用“LocalAndSocial”入门包,issuerUserId 已在基本策略中。
在Facebook技术提供商中使用。
你可能删除了吗?