Hey,
I’m trying to register the NodeJS Keycloak Connect (0.22) with Express routes, such as:
var foo = require('./routes/foo’);
app.use(‘/foo’, foo);
The problems are:
1. Adding the Keycloak protect middleware with "app.use(‘foo’, keycloak.protect(), foo)” causes infinite redirects
2. It can’t be registered in the route javascript file because keycloak.protect() expects the already initialized keycloak function.
When dealing with large applications, it’s not feasible to register all routes in the main Express file.
Any pointers or am I missing something?
Thanks in advance,
Scott
Scott Rossillo
Smartling | Senior Software Engineer