keycloak 相关问题

用于浏览器应用程序和RESTful Web服务的集成单点登录(SSO)和Identity Manager(IDM)。建立在JBoss / Wildfly之上,符合OAuth 2.0,Open ID Connect,JSON Web Token(JWT)和SAML 2.0规范。


KeycloakService.Init()返回未定义的

当我将我的KeyCloak应用程序初始化器添加到我的Angular 17项目中时,它会返回未定义。 特定版本: 角V17 Angular-Keycloak V17 KeyCloak-JS V23 堆栈跟踪 错误未定义的core.mjs:...

回答 1 投票 0


Keycloak和Power Automate

我创建了一个keycloak client oauth2.0,使用邮递员时正确生成代币,这意味着所有内容都已配置。

回答 0 投票 0

将社会提供商用户数据移至KeyCloakschema

Https://www.keycloak.org/docs-api/latest/latest/restest/rest-api/rest-api/index.htex.htex.html-#_users-)。这使我可以将用户信息(包括ID)发布到KeyCloak.

回答 0 投票 0




无法从KeyCloak

我有一个从KeyCloak获得auth的应用程序。 我的访问类型是公开的,因此我没有任何客户秘密。 我已经访问了“启用直接访问赠款”的访问权限 请参阅下面: ...

回答 7 投票 0

未在KeyCloak

我正在运行docker容器中的KeyCloak 26.1.3 我想应用我的自定义用户存储提供商 我有Customuserstorageprovider.java 软件包com.my_app.user_provider; 导入Jakarta.ws.rs.cl ...

回答 1 投票 0



如何通过Java Admin Client在KeyCloak 26的Realm reenm用户配置文件中定义自定义用户属性? 我与KeyCloak 26一起工作,并希望在领域级别定义自定义用户属性(例如User_type),以便它们出现在用户配置文件中。 这是我在Java(Spring Boot)Servi中尝试的...

public void defineUserAttributes(String realmName) { RealmResource realmResource = keycloak.realm(realmName); RealmRepresentation realmRep = realmResource.toRepresentation(); realmRep.getAttributes().put("userProfileEnabled", "true"); String userProfileConfigJson = "" " { "attributes": [{ "name": "user_type", "required": false }, ] } "" "; realmRep.getAttributes().put("userProfileConfiguration", userProfileConfigJson); realmResource.update(realmRep); }

回答 1 投票 0

如何在Spring Cloud Gateway和KeyCloak中进行集成测试? 我想为我的春季云网关添加集成测试。我找到了测试容器,并使用了两个服务,即KeyCloak容器和网关。 现在我已经可以获得访问令牌...

@EnableWebFluxSecurity public class SecurityConfig { @Bean public SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) { http.csrf(ServerHttpSecurity.CsrfSpec::disable); http.authorizeExchange(auth -> auth.anyExchange().authenticated()).oauth2Login(withDefaults()) .oauth2ResourceServer((oauth2) -> oauth2.jwt(Customizer.withDefaults())); return http.build(); } }

回答 1 投票 0


避开弹簧云网关后面的KeyCloak并禁用基本授权

(KeyCloak)的终点,但是现在我正在与HTTP Basic Auth作斗争,该Auth是如何禁用的。每当我尝试击中应由KeyCloak保护的任何其他端点时,我都会获得浏览器表单登录。使用以下配置

回答 1 投票 0

M4无法运行Docker KeyCloak Image

M4CPU无法构建KeyCloack Docker映像。 my-keycloak: 图片:quay.io/keycloak/keycloak:26.1.2 环境: kc_hostname:localhost kc_hostname_port:7080

回答 1 投票 0

.netOpenID连接签名与KeyCloak缺少参数:ID_TOKEN_HINT

I最近从微软找到了一个.NET ASPIRE示例,其中实现了与KeyCloak的OpenID连接。 我得到了解决方案的正常工作,并使用KeyCloak登录以检索我的验证令牌,

回答 1 投票 0



最新问题
© www.soinside.com 2019 - 2025. All rights reserved.