[KEYCLOAK-8317] keycloak-connect - allow kc_idp_hint to be specified from the application

This commit is contained in:
Bruno Oliveira da Silva 2018-10-08 20:27:36 -03:00
parent 8529a624dd
commit 47ef45dc1a

View file

@ -80,6 +80,11 @@ object, rather than the `keycloak.json` file:
let keycloak = new Keycloak({ store: memoryStore }, kcConfig);
----
Applications can also redirect users to their preferred identity provider by using:
[source,javascript]
----
let keycloak = new Keycloak({ store: memoryStore, idpHint: myIdP }, kcConfig);
----
Configuring a web session store::