Direct registration page link

Hi,

I need a direct link for the Keycloak registration page.

This is necessary to direct a customer from a static page or email to the signup page instead of the login page.

How can this be accomplished?

if you’re using the keycloak-js adapter, you can just call register or createRegisterUrl:
https://www.keycloak.org/docs/latest/securing_apps/#register-options
https://www.keycloak.org/docs/latest/securing_apps/#createregisterurl-options

https://<keycloak-host>/realms/<realm>/protocol/openid-connect/registrations?client_id=<clientId>&response_type=code&scope=openid&redirect_uri=<valid_redirect_uri_to_client>

3 Likes

thanks @dasniko, is there an equivalent for SAML link?