Azure ad b2c &引用;issuerUserId“;Azure AdB2C中的自定义策略中

Azure ad b2c &引用;issuerUserId“;Azure AdB2C中的自定义策略中,azure-ad-b2c,azure-ad-b2c-custom-policy,Azure Ad B2c,Azure Ad B2c Custom Policy,我正在研究AdB2C定制政策。我在B2C_1A_TrustFrameworkBase.xml文件中添加了自定义策略所需的一些字段,我不断收到此错误 请让我知道我缺少什么以及什么是“issuerUserId”尝试在TrustFrameworkBase.xml中的ClaimsSchema中添加ClaimType <BuildingBlocks> <ClaimsSchema> ... <ClaimType Id="issuerUserId">

我正在研究AdB2C定制政策。我在B2C_1A_TrustFrameworkBase.xml文件中添加了自定义策略所需的一些字段,我不断收到此错误


请让我知道我缺少什么以及什么是“issuerUserId”

尝试在TrustFrameworkBase.xml中的ClaimsSchema中添加ClaimType

<BuildingBlocks>
<ClaimsSchema>
...
  <ClaimType Id="issuerUserId">
    <DisplayName>Issuer User Id</DisplayName>
    <DataType>string</DataType>
  </ClaimType>
...

...
发卡机构用户Id
一串
...

如果您使用的是“LocalAndSocial”入门包,则issuerUserId已在基本策略中

它在Facebook技术提供商中使用


您可能删除了吗?

谢谢,它起作用了