<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif;">
<div>
<div>
<div>This is working for me now. &nbsp;I created a service that listens on a port and implements the GET, HEAD and POST requests that are being made.</div>
<div><br>
</div>
<div>The one issue now is that integration with other Identity providers does not work now since it still calls my server with the username from the external provider. &nbsp; &nbsp;How can I tell Keycloak that when a user comes from an external Identity provider not
 to check the user Federation provider?</div>
<div><br>
</div>
<div>Thank you,</div>
<div><br>
</div>
<div>Reed Lewis</div>
<div>
<div id="MAC_OUTLOOK_SIGNATURE"></div>
</div>
</div>
</div>
<div><br>
</div>
<span id="OLK_SRC_BODY_SECTION">
<div style="font-family:Calibri; font-size:12pt; text-align:left; color:black; BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP: #b5c4df 1pt solid; BORDER-RIGHT: medium none; PADDING-TOP: 3pt">
<span style="font-weight:bold">From: </span>Scott Rossillo &lt;<a href="mailto:srossillo@smartling.com">srossillo@smartling.com</a>&gt;<br>
<span style="font-weight:bold">Date: </span>Friday, January 15, 2016 at 4:42 PM<br>
<span style="font-weight:bold">To: </span>Thomas Darimont &lt;<a href="mailto:thomas.darimont@googlemail.com">thomas.darimont@googlemail.com</a>&gt;, Reed Lewis &lt;<a href="mailto:RLewis@carbonite.com">RLewis@carbonite.com</a>&gt;<br>
<span style="font-weight:bold">Cc: </span>&quot;<a href="mailto:keycloak-user@lists.jboss.org">keycloak-user@lists.jboss.org</a>&quot; &lt;<a href="mailto:keycloak-user@lists.jboss.org">keycloak-user@lists.jboss.org</a>&gt;<br>
<span style="font-weight:bold">Subject: </span>Re: [keycloak-user] External Username, Password, Email... dataset with Keycloak<br>
</div>
<div><br>
</div>
<div>
<div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
We just put up and blog post[0] and some sample code[1] on how to do this type of migration.
<div class=""><br class="">
</div>
<div class="">[0]:&nbsp;<a href="http://tech.smartling.com/migrate-to-keycloak-with-zero-downtime/" class="">http://tech.smartling.com/migrate-to-keycloak-with-zero-downtime/</a></div>
<div class="">[1]:&nbsp;<a href="https://github.com/Smartling/keycloak-user-migration-provider" class="">https://github.com/Smartling/keycloak-user-migration-provider</a></div>
<div class=""><br class="">
</div>
<div class=""><br class="">
<div class="">
<div class="">Scott Rossillo</div>
<div class="">Smartling | Senior Software Engineer</div>
<div class=""><a href="mailto:srossillo@smartling.com" class="">srossillo@smartling.com</a></div>
<div class=""><br class="">
</div>
<div class=""><a href="https://app.sigstr.com/uc/55e5d41c6533390d03580000" id="campaignblock" target="_blank" style="box-sizing: border-box; color: rgb(0, 75, 118); outline-offset: -2px; font-family: gesta, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px; widows: 1; background-color: rgb(255, 255, 255); outline: 0px !important;" class=""><img alt="Latest News &#43; Events" border="0" src="https://app.sigstr.com/uc/55e5d41c6533390d03580000/img" style="box-sizing: border-box; border: 0px; vertical-align: top; max-width: 100%; height: auto; width: inherit; color: blue; font-family: Helvetica; font-size: 12px;" class=""></a><span style="color: rgb(169, 169, 169); font-family: gesta, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px; widows: 1; background-color: rgb(255, 255, 255);" class=""></span>
<div id="watermark" style="box-sizing: border-box; color: rgb(169, 169, 169); font-family: gesta, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px; widows: 1; background-color: rgb(255, 255, 255);" class="">
<a href="http://www.sigstr.com/" style="box-sizing: border-box; color: rgb(0, 124, 194); text-decoration: none; background-color: transparent; outline: 0px !important;" class=""><img alt="Powered by Sigstr" border="0" src="https://app.sigstr.com/uc/55e5d41c6533390d03580000/watermark" style="box-sizing: border-box; border: 0px; vertical-align: top; max-width: 100%; height: auto; width: inherit; color: rgb(99, 99, 99); font-family: Helvetica; font-size: 11px;" class=""></a></div>
</div>
</div>
<br class="">
<div>
<blockquote type="cite" class="">
<div class="">On Jan 15, 2016, at 11:06 AM, Thomas Darimont &lt;<a href="mailto:thomas.darimont@googlemail.com" class="">thomas.darimont@googlemail.com</a>&gt; wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div dir="ltr" class="">
<div class="">Hello Reed,</div>
<div class=""><br class="">
</div>
<div class="">as you already wrote, you can write a federation provider that queries your</div>
<div class="">backend service via REST for user data.</div>
<div class="">Within the federation provider you can then import the user data&nbsp;</div>
<div class="">returned from the REST call.&nbsp;</div>
<div class=""><br class="">
</div>
<div class="">This would work as follows - within the method:</div>
<div class="">&nbsp; org.keycloak.models.UserFederationProvider.getUserByUsername(RealmModel, String)</div>
<div class="">you call your backend REST service.</div>
<div class=""><br class="">
</div>
<div class="">As a next step you create a new user with the given username</div>
<div class="">&nbsp; UserModel keycloakUser = session.userStorage().addUser(realm, username);</div>
<div class=""><br class="">
</div>
<div class="">Then you copy all the user data from your backend into Keycloak's UserModel.</div>
<div class=""><br class="">
</div>
<div class="">After that your backend user has a corresponding representation in Keycloak</div>
<div class="">with a reference to this federation provider (id) via the &quot;userModel.federationLink&quot; property.</div>
<div class=""><br class="">
</div>
<div class="">The federation link will also be shown in the user page in the keycloak admin console.</div>
<div class="">As long as the federation link is in place keycloak will ask the federation provider&nbsp;</div>
<div class="">for the latest user data. Once you decide to cut the link to the federation provider you can&nbsp;</div>
<div class="">simply do userModel.setFederationLink(null). You could basically cut (or rather omit) the federation</div>
<div class="">&nbsp;link right after you added the user to Keycloak.</div>
<div class=""><br class="">
</div>
<div class="">Keycloak has no link information after that anymore and it will only use the user data stored</div>
<div class="">in the Keycloak database for that particular user.</div>
<div class=""><br class="">
</div>
<div class="">You also have the option to do that for all your users via:</div>
<div class="">&nbsp; org.keycloak.models.UserFederationProviderFactory.syncAllUsers(KeycloakSessionFactory, String, UserFederationProviderModel)<br class="">
</div>
<div class="">or just use on demand per User when he / she want's to login for the first time.</div>
<div class=""><br class="">
</div>
<div class="">Cheers,</div>
<div class="">Thomas</div>
</div>
<div class="gmail_extra"><br class="">
<div class="gmail_quote">2016-01-15 16:16 GMT&#43;01:00 Reed Lewis <span dir="ltr" class="">
&lt;<a href="mailto:RLewis@carbonite.com" target="_blank" class="">RLewis@carbonite.com</a>&gt;</span>:<br class="">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap: break-word; font-size: 14px; font-family: Calibri, sans-serif;" class="">
<div class="">Hi,</div>
<div class="">&nbsp; &nbsp;We are examining KeyCloak (It looks like it can do what we want), but we have the need to have an external lookup of accounts who are not in KeyCloak in an external database which is accessible via a REST call. &nbsp; I know about federation, but
 would prefer to only check the external datasource if the user is not in KeyCloak, but from then on have all the data “live” in KeyCloak and never refer to the external datasource again once the account is “migrated” into KeyCloak.</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">Can this be done with some modification of federation? &nbsp;&nbsp;</div>
<div class=""><br class="">
</div>
<div class="">We do not want to add the user accounts directly into KeyCloak as there are many more there than will ever be in KeyCloak.</div>
<div class=""><br class="">
</div>
<div class="">Thank you,</div>
<div class=""><br class="">
</div>
<div class="">Reed Lewis</div>
<div class=""><br class="">
</div>
<div class="">&nbsp;</div>
<div class="">
<div class=""></div>
</div>
</div>
<br class="">
_______________________________________________<br class="">
keycloak-user mailing list<br class="">
<a href="mailto:keycloak-user@lists.jboss.org" class="">keycloak-user@lists.jboss.org</a><br class="">
<a href="https://lists.jboss.org/mailman/listinfo/keycloak-user" rel="noreferrer" target="_blank" class="">https://lists.jboss.org/mailman/listinfo/keycloak-user</a><br class="">
</blockquote>
</div>
<br class="">
</div>
_______________________________________________<br class="">
keycloak-user mailing list<br class="">
<a href="mailto:keycloak-user@lists.jboss.org" class="">keycloak-user@lists.jboss.org</a><br class="">
<a href="https://lists.jboss.org/mailman/listinfo/keycloak-user">https://lists.jboss.org/mailman/listinfo/keycloak-user</a></div>
</blockquote>
</div>
<br class="">
</div>
</div>
</div>
</span>
</body>
</html>