0
我可以爲我的自定義B2C策略檢索刷新令牌,但希望將令牌生存期增加到最大限制或將滑動窗口生存期設置爲「無到期」。增加B2C自定義策略中的刷新令牌使用期限
這可以通過基本策略的Azure門戶B2C設置完成,但在自定義策略的門戶中不可用。
我如何配置這在我的政策?
我可以爲我的自定義B2C策略檢索刷新令牌,但希望將令牌生存期增加到最大限制或將滑動窗口生存期設置爲「無到期」。增加B2C自定義策略中的刷新令牌使用期限
這可以通過基本策略的Azure門戶B2C設置完成,但在自定義策略的門戶中不可用。
我如何配置這在我的政策?
結帳this article。
在您的RP技術資料中特別添加以下內容。
<Item Key="token_lifetime_secs">3600</Item>
可以像這樣(從文檔複製)
<ClaimsProviders>
<ClaimsProvider>
<DisplayName>Token Issuer</DisplayName>
<TechnicalProfiles>
<TechnicalProfile Id="JwtIssuer">
<Metadata>
<Item Key="token_lifetime_secs">3600</Item>
<Item Key="id_token_lifetime_secs">3600</Item>
<Item Key="refresh_token_lifetime_secs">1209600</Item>
<Item Key="rolling_refresh_token_lifetime_secs">7776000</Item>
<Item Key="IssuanceClaimPattern">AuthorityAndTenantGuid</Item>
<Item Key="AuthenticationContextReferenceClaimPattern">None</Item>
</Metadata>
</TechnicalProfile>
</TechnicalProfiles>
</ClaimsProvider>
</ClaimsProviders>