Hi,
For a web platform we are using Keycloak for user authentication and authorization. We are not using the rest api, but the web interface. Everything works as we expect, but there is one feature that we (I) can’t find: callback
I want a callback to our backend when a user registers and when a user logs in. Is there a way to configure this for a realm?
Hi pazvanti,
We are having the same problem as you: callback (redirect) to our backend when a user registers and when a user logs in.
Did you find the answer to this problem?
Sadly, I did not find the answer. We could have implemented our own even listener, as dasniko suggested, but there was no time for that.
Eventually we took a rather hacky approach where on the request we do some checks on the backend-side, do the needed event loggings and store a cookie. If the cookie is present, we skip this flow for future requests. I know it is not the best approach, but we had time constraints and it was the fastest to implement.