naeimsf
naeimsf
same issue here
same issue here withAngular 17 SSR enabled.
Just found a workaround ([StackOverflow](https://stackoverflow.com/questions/75573255/angular-ssr-universal-website-not-working-with-keycloak-js-adapter-and-keycloa)) Add these lines to providers in app.config.ts file ``` KeycloakAngularModule, KeycloakService, { provide: APP_INITIALIZER, useFactory: initKeycloak, multi: true, deps: [KeycloakService], }, ``` and this is...
Hi again, actually I have an issue with this method. Need to call keycloakService.getToken() in server side which doesn't work as we don't load keycloak in server side. Is there...