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
1 answer

Keycloak not getting Authorized

Hello all together I have an issue with Keycloak at the moment. Maybe I don't get the full idea of it all. What I want to do: Securing a Rest-Service over Keycloak - which is bearer only. A client request a Token from Keycloak and calls with the…
SaschKO
  • 1
  • 3
0
votes
0 answers

Unable to perform authenticate request using Keycloak from postman

I am trying to use an oath2.0 and created a client in Keycloak. All the settings seem to be as per documentation but when I try to use an authorization using postman request, the following error message is showing on a console: Error: Client…
user565
  • 871
  • 1
  • 22
  • 47
0
votes
1 answer

Brute Force Detection - Keycloak

We start using Keycloak as Identity and access management for our new project design and enabled Brute Force Detection for my newly created Realm. It’s working, but in my use-case, I have to notify my user they have to wait another 30min to try…
0
votes
1 answer

keycloakprofile id is undefined

I need help! I am using "keycloak-angular": "^8.0.1", "keycloak-js": "^11.0.2", When I do async ngOnInit() { if (await this.keycloakService.isLoggedIn()) { this.userDetails = await this.keycloakService.loadUserProfile(); …
The g
  • 43
  • 5
0
votes
1 answer

Kubernetes Route to Service using Ingress hostname | Keycloak

What field should I add to the service / ingress yaml so that I can reach the service from another pod in the same cluster using its associated (external) hostname specified in ingress? I'm using microk8s with the default ingress class (nginx), and…
0
votes
1 answer

Keycloak with external IDP

I am using keycloak (version 8.0.1) as an identity broker in my application(app1). In my application user can sign using external idp(google, fb) or from our login page. For now, I setup another Keycloak instance and configured it as IDP using…
amj
  • 383
  • 1
  • 5
  • 13
0
votes
2 answers

Node Keycloak requests returns Login even with bearer token

I've been trying to integrate Keycloak into a simple node/express server so that I can authenticate with a bearer token in the header, but every protected request I'm making returns html(login page). My simple index.js file: const express =…
0
votes
1 answer

Keycloak: How to add cc or bcc while sending email?

Requirement: How do we add cc or bcc when an email is sent through keycloak? Problem: When a user is invited to sign-up using keycloak invitation mail is sent. But in some cases, the invitation is not sent, so I plan to add cc or bcc to the…
-1
votes
1 answer

Getting Access Denied( 403 Forbidden on Console) while access a Hello World page using keycloak protection in react js application

I am trying to test login in react js application using keycloak but getting Access Denied. Please help me to find the cause. Any details needed I will provide. Below is the simple reactjs application - index.html …
-1
votes
1 answer

why don't create an initial admin user in keycloak?

enter image description here request url: http://localhost:8080/ request body form data: username: admin password: 12345 passwordConfirmation: 12345 stateChecker: HvbmSO7g6Qg13gLhqF-lStA_WBZDxOX6s5Yy3TB4XRg error: POST http://localhost:8080/ 403…
-1
votes
1 answer

Project decision - JWT vs classic sessions

So, I'm building my first project that will be used in production with medium-high traffic. I've decided to use Keycloak as an IdP for it, NodeJS as a backend, React to frontend (both on TypeScript). For the back-end I want to use a bearer-token as…
Octavian Niculescu
  • 1,177
  • 1
  • 3
  • 24
-1
votes
1 answer

How to tun two instances of keycloak

My requirement is such that i have an application authenticated via keycloak. Suppose if my current keycloak fails i need a second instance of the keycloak to run in parallel without any downtime. Can someone provide some reference on how to create…
-2
votes
1 answer

Keycloak fastapi integation

I am trying to build an app, with fastapi. I was trying to use keycloak for authentication part, from fastapi_keycloak import FastAPIKeycloak, OIDCUser app = FastAPI() idp = FastAPIKeycloak( server_url="https://auth.some-domain.com/auth", …
1 2 3
9
10