在azure b2c app上为自定义ui添加隐私策略

时间:2018-01-03 17:54:06

标签: azure azure-ad-b2c

我在Azure AD B2C应用上使用自定义策略。我正在使用一个自定义UI,在我的注册/登录策略中将引用传递给我的服务器上托管的UI:

  <BuildingBlocks>
    <ContentDefinitions>
      <ContentDefinition Id="api.signuporsignin">
        <LoadUri>https://MyURL/index.html</LoadUri>
      </ContentDefinition>
    </ContentDefinitions>
  </BuildingBlocks>

这很有效。但是现在我想使用我的隐私策略的URL向我的自定义UI添加HTML链接元素,并且在执行我的策略时该元素没有显示。除了链接外,一切都在显现。

Azure上的某些缓存是否可以使用旧的自定义UI?或者是我缺少的东西?

1 个答案:

答案 0 :(得分:0)

尝试:

<div id="api">
    <!-- Leave this element empty because Azure AD B2C will insert content here. -->
</div>

<!-- URL goes here, outside of the API div above -->
<a href="/path/to/privacypolicy.html" target="_blank">Privacy policy</a>