Questions tagged [keycloak-connect]

keycloak-nodejs-connect is a Keycloak Node.js Adapter. Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.

This module makes it simple to implement a Node.js Connect-friendly application that uses Keycloak for its authentication and authorization needs.

148 questions
0
votes
0 answers

sign token key SPI keycloak

I am using keycloak for token administration for users. For requirements i need save the sign key in a secure vault that we have At this moment keycloak save the sign private key in database: SELECT VALUE, CC.NAME FROM COMPONENT_CONFIG CC INNER…
0
votes
0 answers

No 'Access-Control-Allow-Origin' error from keycloak making a request from my react client to node.js api

I am using keycloak21.0.2 in a docker container. When I try to make a get request from frontend react app. Example: const fetchProducts = async () => { try { if (keycloak.authenticated) { const token = keycloak.token; …
czxriken
  • 25
  • 4
0
votes
1 answer

Keycloak version 21 how to fix the CORS origin issue in keycloak

last one week i tried Single sign on authentication (SSO) Front end is angular technologies. ( common keycloak-URL and common realm-name, client name only different ). keycloak version 21.1.0 , but I am always getting CORS issue (…
Nutty
  • 1
  • 1
0
votes
0 answers

Federation Authentication with KeyCloak: Bad Request Issue

We have integrated Key Cloak into the application. Below is the code:      protected override void ProcessCore(IdentityProvidersArgs args)         {             Assert.ArgumentNotNull(args, "args");             IdentityProvider =…
0
votes
1 answer

Adding headers to request/response of keycloak token endpoint

Can we add custom headers to the token endpoint? `curl --location --request POST 'https://localhost:8081/auth/realms/global/protocol/openid-connect/token' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode…
user507333
  • 79
  • 1
  • 6
0
votes
0 answers

Hierarchical Authorization in Keycloak

As a newcomer to Keycloak, I'm encountering an authorization issue that I could use some help with. Specifically, I'm trying to establish a hierarchical authorization system where there are two types of entities, namely "communities" and "members,"…
0
votes
0 answers

Keycloak customise message if user gets locked

Can someone please suggest how can we customize the message when user gets locked in keycloak using its wrapper api's or any configuration in keycloak? I am trying to implement this using java spring boot and I am receiving error in logs as …
0
votes
1 answer

how to disable keycloak temporarily in the NodeJS application?

I have integrated keycloak with the backend application written in express - nodejs. now either for testing purposes or as a roll-out feature I want to disable keycloak from my API endpoints. keycloak is initialised as below: const session =…
0
votes
0 answers

Failed to run in production mode

Failed to run keycloak in production mode. I installed keycloak 16 (wildfly) in Linux server and started using below command. cd /bin/standalone.sh After starting I could see the localhost ip and port (120.0.0.1:8443) How to configure this in…
0
votes
0 answers

Interface for Keycloak

I am writing to request assistance with the development of a user management interface for Keycloak. As an administrator, I need to manage user settings, but I am hesitant to provide full access to the Keycloak platform for fear that users may…
0
votes
0 answers

Keycloak - Connection Null issue when spun up on AWS ECS

I have checked that all relevant parameters are being parsed correctly and i am able to see them in my AWS ECS service. When the service is spun up i get the below error WARN  [org.jboss.jca.core.connectionmanager.pool.strategy.OnePool]…
0
votes
0 answers

Get User Profile in Keycloak using REST Api

I have got a accessToken by calling the keycloak endpoint /token using REST Api as follows curl -d 'client_id=myclient' -d 'username=username' -d 'password=password' -d 'grant_type=password' -d 'scope=openid' -d…
0
votes
1 answer

Keycloak with mod-security

I plan to use Keycloak as our primary login app, but before i move forward with deployment, i need to address one concern. The issue arose when i enabled mod-security on the Apache server. This resulted in several Keycloak screens and operations…
0
votes
0 answers

How can I get my Keycloak Database updated with Groups coming from AD?

We are connecting our Keycloak server to AD and it’s configured so changes in AD get stored in Keycloak’s Database. The final goal is to have our Application’s DB synchronised and we are succeeding so far, except for the User Group Memberships. Here…
0
votes
0 answers

cant coonect flask-app to keycloak client

I have a small app with flask. I want to connect it to keycloak server using docker-compose here is the main code: keycloak = KeycloakOpenID(server_url='http://localhost:8080/auth/', client_id='guess-app', …
skinda
  • 1
  • 3