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

How to add custom attributes to bearer-only clients

I'm using keycloak-connect (nodejs) for my backend with a bearer-only profile. The frontend is a client with a public profile: 1 - How can I add some private custom attributes in userInfo that are only accessible by the backend (bearer-only) ? I'm…
0
votes
1 answer

keycloak-connect nodejs / meteor - Getting access denied at first login only and prod only

I have a meteor/nodeJs app that needs to connect to my client to authentify. I set up a connection access point as such (I just anonymized the various values): import Keycloak from "keycloak-connect"; import { WebApp } from "meteor/webapp"; import…
Ivo
  • 2,308
  • 1
  • 13
  • 28
0
votes
0 answers

KeyCloak with AzureAD

I'm trying to configure my environment in keycloak to authenticate with azure active directory according to the documentation ( https://www.keycloak.org/getting-started ) with an image already created in docker, I managed to do the configuration…
0
votes
0 answers

how to show success message on keyclock page in django?

{% if messages %}
    {% for message in messages %}
  • {{ message }}
coder
  • 23
  • 6
0
votes
0 answers

Keycloak provider setup

I'm trying to connect via any provider, mainly facebook, using keycloak on a flutter application. The things that I didfor now are: Made an app with facebook api and got a client id and secret. (I don't know if I did that correctly though)…
0
votes
1 answer

Keycloak client baseurl is not accepting url without http

I am developing react app. And keeping keycloak for signup. After completing signup keycloak is triggering an email for email verification. When the user verify I want to redirect that verified user to this url e.g. com.abcd.xyzApp/(My app). But I…
0
votes
1 answer

Keycloak 2-factor authentification with OIDC Identity Brokering

Is it possible to made a 2-factors authentication with OIDC Identity Brokering I'm trying to use TOTP to setup the 2-factors authentication, it work for password authentication method but not with OIDC Identity Brokering. 1- with password…
0
votes
1 answer

Node.js API proteced by Keycloak with Access-Type "bearer-only"

I am new to Keycloak. I have created the simples app in Node.js as per the documentation: import express from "express"; import Keycloak from "keycloak-connect"; const keycloak = new Keycloak({}); const app = express(); app.use(…
Jirmed
  • 373
  • 2
  • 13
0
votes
1 answer

How to configure keycloak-(nodejs-)connect to use PKCE?

I have an express app that I want to secure with keycloak-connect. I have not found any documentation or examples of how to set up an Authorization Code Flow with PKCE in this middleware. I think I have configured Keycloak (IDP) correctly, because…
0
votes
1 answer

Keycloak denies access even for empty role

In Node.js app I try to secure page with keycloak.protect(), but after successful login app always responds with 403 error. Keycloak was configured this way: Master -> Add realm -> Name: kingdom Clients -> Create -> Client ID: nodejs Clients ->…
Slaus
  • 2,086
  • 4
  • 26
  • 41
0
votes
1 answer

How Can we use Policy-enforcer dynamically in Java Springboot?

Saurav Chaurasia Fri, May 7, 5:00 PM (20 hours ago) to me Like I am able to use the static Policy enforcer by providing the path and method and resource into the application.properties. But in realtime application we will be having N number of roles…
0
votes
1 answer

Is there a way to query keycloak user on user attributes?

I am planning to use keycloak as Identity provider for one of my project. I wanted to extend the user information by adding user attributes, but the problem is I also want to be able to query based on that attribute. Did some research but couldn't…
0
votes
1 answer

keycloak-12.0.4 wildfly-21.0.2 Connection refused

myapp on wildfly-10 used keycloak-6 for authencation for 2 years without any issue. The SSL certificate expired and I have reinstall a new SSL and update to wildfly-21 and keycloak-12. I am getting a Connection refused error. Here is the list of…
kem
  • 407
  • 1
  • 6
  • 20
0
votes
1 answer

Run Keycloak with database contains data

i configured keycloak with mysql database and it worked, i created a realm, user, role for test and everything was fine, I stopped keycloak and restarted it with >standalone.bat and i got this error: FATAL [org.keycloak.services] (ServerService…
AGGOUN
  • 1
  • 1
0
votes
0 answers

Keycloak does not redirect to https

I have a keycloak installed in a host without SSL so my Keycloak server is accessed by HTTP. This is my keycloak configuration in a docker-compose: ` keycloak: image: jboss/keycloak:10.0.2 restart: always depends_on: - keycloak-db networks: -…
nole
  • 1,422
  • 4
  • 20
  • 32
1 2 3
9
10