我正在尝试为具有弹簧安全性的同一资源服务器配置多个颁发者。
这种方法适用于 keycloak。
JwtIssuerReactiveAuthenticationManagerResolver authenticationManagerResolver =
new JwtIssuerReactiveAuthenticationManagerResolver("KEYCLOAK_ISSUER_URL", "AZURE_ISSUER_URL");
Keycloak 颁发者 URL 返回以下详细信息。
{
"realm": "",
"public_key": "",
"token-service": "",
"account-service": "",
"tokens-not-before": 0
}
But Azure issuer URL return
> The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
How can I implement multiple issuers with Azure b2c?