<div dir="ltr">Token-store is for server-side adapter. Public-client is ignored as it will simply use the presence of secret, but it&#39;s pointless to have a confidential html5 client as the secret would be public. Public key is not needed for js as it doesn&#39;t verify the token, it could, but wouldn&#39;t have much value as the services would do that anyways.</div><div class="gmail_extra"><br><div class="gmail_quote">On 15 April 2016 at 17:29, Michael Clayton <span dir="ltr">&lt;<a href="mailto:mclayton@redhat.com" target="_blank">mclayton@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Thanks, that helps.  I&#39;m happy to go with that approach, but it would<br>
help me if I understood why most of the values in keycloak.json are not<br>
needed by keycloak.js.<br>
<br>
Are &quot;token-store&quot;, &quot;public-client&quot; etc totally ignored by keycloak.js?<br>
A quick grep suggests that they are ignored.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Michael Clayton<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
On Fri, Apr 15, 2016 at 07:45:59AM +0200, Stian Thorgersen wrote:<br>
&gt; You don&#39;t need to pass in the whole keycloak.json like this, to initialize<br>
&gt; it without the request for keycloak.json just do:<br>
&gt;<br>
&gt;   new Keycloak({<br>
&gt;     realm: &quot;myReam&quot;,<br>
&gt;     clientId: &quot;myClientId&quot;<br>
&gt;   }<br>
&gt;<br>
&gt; That&#39;s it.<br>
&gt;<br>
&gt;<br>
&gt; On 14 April 2016 at 21:59, Michael Clayton &lt;<a href="mailto:mclayton@redhat.com">mclayton@redhat.com</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; Hi all,<br>
&gt; &gt;<br>
&gt; &gt; I&#39;m integrating keycloak.js with the Red Hat Customer Portal and have a<br>
&gt; &gt; question about passing a configuration object into the Keycloak()<br>
&gt; &gt; constructor.<br>
&gt; &gt;<br>
&gt; &gt; At the point where I call Keycloak(), I&#39;m attempting to avoid waiting<br>
&gt; &gt; for the keycloak.json HTTP GET by inlining keycloak.json during a build<br>
&gt; &gt; step.  By example, my build now produces this:<br>
&gt; &gt;<br>
&gt; &gt;     var keycloak = new Keycloak({<br>
&gt; &gt;         &quot;realm&quot; : &quot;myRealm&quot;,<br>
&gt; &gt;         &quot;realm-public-key&quot; : &quot;myPublicKey&quot;,<br>
&gt; &gt;         &quot;auth-server-url&quot; : &quot;<a href="https://keycloak.me/auth" rel="noreferrer" target="_blank">https://keycloak.me/auth</a>&quot;,<br>
&gt; &gt;         &quot;ssl-required&quot; : &quot;external&quot;,<br>
&gt; &gt;         &quot;resource&quot; : &quot;myClientId&quot;,<br>
&gt; &gt;         &quot;public-client&quot; : true,<br>
&gt; &gt;         &quot;token-store&quot;: &quot;cookie&quot;<br>
&gt; &gt;     });<br>
&gt; &gt;<br>
&gt; &gt; I was hoping this would Just Work, but I quickly discovered that some of<br>
&gt; &gt; the properties are &quot;renamed&quot; after the HTTP request:<br>
&gt; &gt;<br>
&gt; &gt;     kc.authServerUrl = config[&#39;auth-server-url&#39;];<br>
&gt; &gt;     kc.realm = config[&#39;realm&#39;];<br>
&gt; &gt;     kc.clientId = config[&#39;resource&#39;];<br>
&gt; &gt;     kc.clientSecret = (config[&#39;credentials&#39;] || {})[&#39;secret&#39;];<br>
&gt; &gt;<br>
&gt; &gt; And thus my setup doesn&#39;t work because &quot;clientId&quot; doesn&#39;t exist inside<br>
&gt; &gt; keycloak.json.<br>
&gt; &gt;<br>
&gt; &gt; My question is: would I be foolish to rename the properties inside<br>
&gt; &gt; keycloak.json so that the JSON can be passed directly into the Keycloak<br>
&gt; &gt; constructor?  For example, &quot;resource&quot; becomes &quot;clientId&quot; and<br>
&gt; &gt; &quot;auth-server-url&quot; becomes &quot;authServerUrl&quot;.<br>
&gt; &gt;<br>
&gt; &gt; It would be really convenient if I could give keycloak.js the contents<br>
&gt; &gt; of keycloak.json without having to fret about where it came from (AJAX<br>
&gt; &gt; or hardcoded or build-inlined).  If others would like that feature too,<br>
&gt; &gt; I&#39;d happily put together a contribution.<br>
&gt; &gt;<br>
&gt; &gt; Thanks for any advice!<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; Michael Clayton<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; keycloak-user mailing list<br>
&gt; &gt; <a href="mailto:keycloak-user@lists.jboss.org">keycloak-user@lists.jboss.org</a><br>
&gt; &gt; <a href="https://lists.jboss.org/mailman/listinfo/keycloak-user" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/keycloak-user</a><br>
&gt; &gt;<br>
</div></div></blockquote></div><br></div>