<div dir="ltr"><div><div>Hi,<br><br></div>After my user logs I am saving the token to a localstorage. I am using angularjs by the way.  <br><br></div><div>So if my user refreshes the page they still have the session.  As far as I can tell when you refresh the page, most of the info of the object keycloak is null, except for the realm and all the stuff you  get form keycloak.json.  Like if you have never logged.<br><br></div><div>So I stored the token in my localStorage.<br><br></div><div>I am thinking 3 options basically.<br><br>1)<br></div><div>Setting keycloak.token = localStorage.get(&quot;token&quot;), and I was trying to look for a function in that object to retrieve all the other data, but I couldnt find any on the documentation and looking at my console.log(keycloak)<br><br>2)<br></div><div>Storing the whole object keycloak in localstorage, the problem with this is that it will only store the properties and obviously not the functions, so I was thinking that I should manually set all the properties like this<br><br><pre style="background-color:rgb(255,255,255);color:rgb(0,0,0);font-family:&quot;DejaVu Sans Mono&quot;;font-size:9pt"><span style="color:rgb(102,14,122);font-weight:bold">clientId </span>= localStorageService.<span style="color:rgb(102,14,122);font-weight:bold">get</span>(<span style="color:rgb(0,128,0);font-weight:bold">&#39;keycloak&#39;</span>).<span style="color:rgb(102,14,122);font-weight:bold">clientId</span>;<br><span style="color:rgb(102,14,122);font-weight:bold">idToken </span>= localStorageService.<span style="color:rgb(102,14,122);font-weight:bold">get</span>(<span style="color:rgb(0,128,0);font-weight:bold">&#39;keycloak&#39;</span>).<span style="color:rgb(102,14,122);font-weight:bold">idToken</span>;<br><span style="color:rgb(102,14,122);font-weight:bold">idTokenParsed </span>= localStorageService.<span style="color:rgb(102,14,122);font-weight:bold">get</span>(<span style="color:rgb(0,128,0);font-weight:bold">&#39;keycloak&#39;</span>).<span style="color:rgb(102,14,122);font-weight:bold">idTokenParsed</span>;<br><span style="color:rgb(102,14,122);font-weight:bold">realmAccess </span>=  localStorageService.<span style="color:rgb(102,14,122);font-weight:bold">get</span>(<span style="color:rgb(0,128,0);font-weight:bold">&#39;keycloak&#39;</span>).<span style="color:rgb(102,14,122);font-weight:bold">realmAccess</span>;<br><br></pre><pre style="background-color:rgb(255,255,255);color:rgb(0,0,0);font-family:&quot;DejaVu Sans Mono&quot;;font-size:9pt">3) Just check everything against the localstorage instead.<br></pre><pre style="background-color:rgb(255,255,255);color:rgb(0,0,0);font-family:&quot;DejaVu Sans Mono&quot;;font-size:9pt">But I wont be able to use the functions from the object keyclaok, like updateToken.<br><br></pre><pre style="background-color:rgb(255,255,255);color:rgb(0,0,0);font-family:&quot;DejaVu Sans Mono&quot;;font-size:9pt">I am kind of new to angular, as you can see too.<br><br></pre><pre style="background-color:rgb(255,255,255);color:rgb(0,0,0);font-family:&quot;DejaVu Sans Mono&quot;;font-size:9pt">Thanks,<br></pre><br></div></div>