Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
40 views

I'm using keycloak-js in a Nuxt 4 application for authentication. After login, I am redirected back to my page, but the URL contains session-related query parameters (like ?code=...&state=...&...
BATMAN_2008's user avatar
  • 3,642
1 vote
1 answer
129 views

Whenever I add my Keycloak app initializer to my angular 17 project it returns undefined. Keycloak is running in a docker container locally. The administrator console is working and I have set up my ...
Alexander Vestergaard Eriksen's user avatar
1 vote
0 answers
288 views

I am trying to setup an angular (19) app, within an Nx project, with keycloak authentication. The problem I am facing is that, after successfully building the app, I get the following error in the ...
Comforse's user avatar
  • 2,066
2 votes
0 answers
79 views

I have a backend written in Java and a frontend in ReactJS, where I am using Keycloak for authentication. My frontend handles two types of login flows: Google Login via Keycloak Identity Provider ...
Beu's user avatar
  • 1,634
1 vote
1 answer
612 views

I am working on an Angular application with SSR, and I'm trying to upgrade my project to angular 19. I'm using the new keycloak-angular provideKeycloak for authentication. My current configuration ...
soung's user avatar
  • 1,624
0 votes
0 answers
221 views

Im having some issues with Vue and Keycloak, I might understand something wrong about Keycloak which could cause the issues. So I have a Login page by myself (I dont want to use Keycloaks sso) where ...
Chemmic's user avatar
1 vote
3 answers
724 views

I am trying to develop an application with Angular as front, and Java as backend. I need to login via Keycloak, and then send the received code to the back, to generate the token and store it in the ...
Faliorn's user avatar
  • 1,498
1 vote
1 answer
747 views

I'm building a Next.js application and I have implemented a custom registration page for users. I want to use Keycloak-js to handle user registration directly within the Next.js app, allowing for a ...
Sérgio Serra's user avatar
1 vote
1 answer
1k views

I'm attempting to setup keycloak-angular in a v18 SPA following this approach which seems to have had historic success. When calling the login method keycloak.login() I receive the following error ...
Funsaized's user avatar
  • 2,180
1 vote
0 answers
248 views

I've a VSTO Add'In running in Outlook to integrate some emails with a Web Application in .NET Framework 4.8 that uses openid authentication. Now, Microsoft released the new version of Outlook that no ...
NatsuDragonEye's user avatar
0 votes
0 answers
322 views

I have two Applications. On running on example.com and another running on example.com/insurance/ I am using Keycloak IDP. The application running on /microinsurance/ is an Angular app 17. In keycloak ...
kamrul Islam Tushar's user avatar
1 vote
1 answer
340 views

I have a Nuxt3 app which I want to secure with Keycloak. For the integration, I use the keycloak-js library, which is defined as a plugin: plugins/keycloak.client.ts import Keycloak from 'keycloak-js';...
shieldine's user avatar
0 votes
0 answers
247 views

I'm encountering an issue with Keycloak in my React application. When the token is no longer valid and a refresh is not possible, a proper logout or redirect to the login page fails. If the logout ...
Sator's user avatar
  • 786
1 vote
1 answer
554 views

I have an angular application authenticating using keycloak, keycloak-angular and keycloak-js. It was working good but recently it started to throw below error on the console. core.mjs:6484 ERROR ...
Vikash's user avatar
  • 2,183
1 vote
1 answer
2k views

I'm using npm packet keycloak-js in vue 3 app. Keycloak server and keycloak-js with same versions 24.0.2 import Keycloak from 'keycloak-js' let initOptions = { url: 'https://address' realm: '...
Oksana's user avatar
  • 21
1 vote
0 answers
291 views

I have been integrating keycloak-js and angular to achieve the following scenario in a multitenant application: The /signing page is public (Without Guard rules) and displays a form were the user ...
ELavicount's user avatar
1 vote
0 answers
133 views

i am developing a fullstack application where i run the already developed backend in docker containers with FastAPI and keycloak with docker. The issue now is that the Authorization via token from the ...
stefan raab's user avatar
2 votes
3 answers
5k views

I'm encountering an error when attempting to initialize Keycloak in my React application. The error message states: Failed to initialize adapter: Error: A 'Keycloak' instance can only be initialized ...
Vahid Jadidi's user avatar
2 votes
0 answers
503 views

I have a Vue app that is secured by Keycloak. If user is not authenticated with Keycloak then every request is being redirected to Keycloak login and after a successful login the user is redirected to ...
Djole Pi's user avatar
  • 137
1 vote
0 answers
103 views

I'm getting a cors error when trying to calling a keycloak.protected endpoint. I'm calling it from a svelte front-end app. The middleware is running on an express server. Here's the full project code: ...
Robert Tootill's user avatar
0 votes
1 answer
2k views

I'm using Keycloak JavaScript adapter in my single page web app. I execute adapter = new Keycloak({ url: ENV.APP.KEYCLOAK_URL, realm: ENV.APP.KEYCLOAK_REALM, clientId: ENV.APP.KEYCLOAK_CLIENT_ID,...
Raniere Silva's user avatar
0 votes
2 answers
3k views

I have a React applicaion created with create-react-app in which I have a simple routing scheme. The intent of this routing scheme is to allow for an user to click on a button to redirect to a ...
Felipe Mastromauro Corrêa's user avatar
0 votes
1 answer
71 views

I am using keycloak-js in my Nuxt3 app. There is this line in the plugin code ... app.$keycloak = keycloak; How can I access the value stored in app.$keycloak in my pages (pages/*.vue)? Of specific ...
Naga Vijayapuram's user avatar
0 votes
1 answer
485 views

I'm developing a web application using Angular 15 and Spring Boot. As the IAM solution we are using Keycloak(20.0.5). We have created a public client for the web application (web-application). We have ...
iuhettiarachchi's user avatar
0 votes
0 answers
1k views

I'm facing an issue integrating my Angular application (version 13.3.2) with Keycloak, using the packages "keycloak-angular": "10.0.2" and "keycloak-js": "9.0.3"...
SparrowVic's user avatar
0 votes
0 answers
3k views

I'm trying to extend the expiration time of refresh tokens, after using one. Let's imagine that my current access_token has expired. In order to have a new access_token, I make a request using my ...
Bishop19's user avatar
0 votes
1 answer
1k views

Problem: There is no information in the keycloak documentation how to get locale information (which language was selected in the locale selector in the keycloak login page) in your app, after ...
Adi Dasler's user avatar
1 vote
0 answers
104 views

We have an Angular web application which is using KeyCloak and is shipped to multiple customers. Some of them are using Keycloak version 19, others are Keycloak version 21. We are using Keycloak ...
ForestG's user avatar
  • 18.2k
0 votes
1 answer
4k views

I'm using keycloak-js adapter with a Vue 3 Application. This system has some public pages, so I can't call keycloak right away. I already setup a button to call the login page, but the token is not ...
EFNeves's user avatar
3 votes
0 answers
295 views

I try to integrate Keycloak to my Angular application, so I did a simple application with 2 components. My package.json : { "name": "keycloak-integration", "version": ...
Guillaume_BH's user avatar
3 votes
2 answers
23k views

I'm currently using keycloak on a project and everything is working fine. With one exception... If I login, I am redirected to my project's page and if I then logout, everything works flawlessly. But ...
Diogo Pedrosa's user avatar
1 vote
1 answer
1k views

I am strugling to translate my website to Angular SSR for better SEO ranking. I manage to handle window, document, localStorgae calls in website. But when I check whole site with Keycloak integration ...
Yohan Hirimuthugoda's user avatar
1 vote
0 answers
688 views

I have a running Keycloak instance on auth.example.com and my app is running on example.io. Brave Shield is blocking CORS cookies, so the cookie is not sent to the /protocol/openid-connect/token/ and ...
cre8's user avatar
  • 13.6k
1 vote
2 answers
2k views

I have a very simple react app and I want to add keycloak authentication to it's pages. I'm using following versions react v18 keycloak 18.0.0 (with quarkus) react-keycloak/web: 3.4.0 keycloak-js: 20....
Ruchira Nawarathna's user avatar
1 vote
1 answer
657 views

My JS React SPA web application (which is running in the browser) needs to securely access two different rest-api backends which are written in two different programming languages, deployed to two ...
Anton Fil's user avatar
  • 305
3 votes
3 answers
8k views

I am trying to use keycloak to secure a React application. I am using two packages: React-keycloak and keycloak-js. This is my keycloak provider <ReactKeycloakProvider authClient={...
Claude Hasler's user avatar
-2 votes
1 answer
698 views

When a user attempts logout/SIGNOUT from GUI using the SIGNOUT button provided in GUI, SIGNOUT is not happening and user gets an error page stating ‘Invalid parameter: redirect_uri’ Angular-js: 1.6.0 ...
Deshan's user avatar
  • 21
1 vote
0 answers
2k views

I have a react application that using keycloak for some protected routes. I am creating a new keycloak instance with the following json : { "realm": "demo", "auth-server-...
Anandu Babu's user avatar
3 votes
1 answer
7k views

I am trying to implement PKCE flow with keycloak and reactJS. I am generating code_challange and code verifier in my react client application. I have adapter configuration as follows : { "realm&...
Anandu Babu's user avatar
1 vote
3 answers
2k views

I am trying to integrating keycloak with angular but I am facing issue invalid_redirect_uri/Page_not_found error. Spent hours on googling but failed.
Hamid Shah's user avatar