<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</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><br>
</div>
<div>
<div>
<div>I&#8217;m currently using the browser to initially log in to my app. After the user credentials have been validated I intercept the url containing the code and use that on the resource /realms/myrealm/tokens/access/codes. To convert the code into a token. I
 am then able to use the embedded access token for subsequent API calls. This works fine until the access token expires.&nbsp;</div>
<div><br>
</div>
<div>When the access token expires the service returns a 401. At present the only way I can get past this is to redirect the user back to the login page and start the above process again (creates another session). I would only expect to have to do this if the
 SSO idle timeout and been reached (it hasn&#8217;t). I&#8217;ve looked through the API docs and found the resource /realms/myrealm/token/refresh. I&#8217;ve tried using this resource but have failed miserably. Could someone please explain &nbsp;how to use this resource or point
 me somewhere else if I&#8217;ve got it completely wrong.&nbsp;</div>
<div><br>
</div>
<div>Example code below.&nbsp;</div>
<div><br>
</div>
<div style="font-family: Calibri;">
<p style="font-family: Monaco; font-size: 11px; margin: 0px;"><span style="color: rgb(147, 26, 104);">private</span>&nbsp;JWSToken refreshToken(String&nbsp;<span style="color: rgb(126, 80, 79);">accessToken</span>, String&nbsp;<span style="color: rgb(126, 80, 79);">refreshToken</span>)&nbsp;<span style="color: rgb(147, 26, 104);">throws</span>&nbsp;IOException,
 InvalidTokenException{</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; JWSToken&nbsp;<span style="color: rgb(126, 80, 79);">token</span>&nbsp;=&nbsp;<span style="color: rgb(147, 26, 104);">null</span>;</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;">&nbsp;&nbsp; &nbsp; &nbsp;</p>
<p style="color: rgb(57, 51, 255); font-family: Monaco; font-size: 11px; margin: 0px;">
<span style="color: rgb(0, 0, 0);">&nbsp; &nbsp; &nbsp; String&nbsp;</span><span style="color: rgb(126, 80, 79);">url</span><span style="color: rgb(0, 0, 0);">&nbsp;=&nbsp;</span>&quot;<a href="http://127.0.0.1:8080/auth/realms/myrealm/tokens/refresh">http://127.0.0.1:8080/auth/realms/myrealm/tokens/refresh</a>&quot;<span style="color: rgb(0, 0, 0);">;</span></p>
<p style="color: rgb(57, 51, 255); font-family: Monaco; font-size: 11px; margin: 0px;">
<span style="color: rgb(0, 0, 0);">&nbsp; &nbsp; &nbsp; //String&nbsp;</span><span style="color: rgb(126, 80, 79);">query</span><span style="color: rgb(0, 0, 0);">&nbsp;=&nbsp;</span>&#8220;refresh_token=&#8220;<span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span><span style="color: rgb(126, 80, 79);">refreshToken</span><span style="color: rgb(0, 0, 0);">;&nbsp;</span></p>
<p style="color: rgb(57, 51, 255); font-family: Monaco; font-size: 11px; margin: 0px;">
<span style="color: rgb(0, 0, 0);">&nbsp; &nbsp; &nbsp; //String&nbsp;</span><span style="color: rgb(126, 80, 79);">query</span><span style="color: rgb(0, 0, 0);">&nbsp;=&nbsp;</span>&#8220;refresh_token=&#8220;<span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span><span style="color: rgb(126, 80, 79);">refreshToken</span><span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span>&#8220;client_id=&quot;<span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span><span style="color: rgb(3, 38, 204);">CLIENT_ID</span>&quot;<span style="color: rgb(0, 0, 0);">;</span></p>
<p style="color: rgb(57, 51, 255); font-family: Monaco; font-size: 11px; margin: 0px;">
<span style="color: rgb(0, 0, 0);">&nbsp; &nbsp; &nbsp; String&nbsp;</span><span style="color: rgb(126, 80, 79);">query</span><span style="color: rgb(0, 0, 0);">&nbsp;=&nbsp;</span>&quot;refresh_token=&quot;<span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span><span style="color: rgb(126, 80, 79);">refreshToken</span><span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span>&quot;client_id=&quot;<span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span><span style="color: rgb(3, 38, 204);">CLIENT_ID</span><span style="color: rgb(0, 0, 0);">&nbsp;&#43;&nbsp;</span>&quot;grant_type=refresh_token&quot;<span style="color: rgb(0, 0, 0);">;</span></p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;">&nbsp; &nbsp; &nbsp; //Tried all the above<span class="Apple-tab-span" style="white-space: pre;">
</span></p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;"><br>
</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; HttpPost&nbsp;<span style="color: rgb(126, 80, 79);">httppost</span>&nbsp;=&nbsp;<span style="color: rgb(147, 26, 104);">new</span>&nbsp;HttpPost(<span style="color: rgb(126, 80, 79);">url</span>);</p>
<p style="margin: 0px;"><font face="Monaco" size="2">&nbsp; &nbsp; &nbsp;&nbsp;</font><span style="color: rgb(126, 80, 79); font-family: Monaco; font-size: 11px;">httppost</span><font face="Monaco" size="2">.addHeader(</font><font color="#3933ff" face="Monaco" size="2">&#8220;Authorization</font><font face="Monaco" size="2"><font color="#3933ff">&#8221;</font>,&nbsp;</font><font color="#3933ff" face="Monaco" size="2">&#8220;Bearer&nbsp;</font><font face="Monaco" size="2"><font color="#3933ff">&#8220;</font>&nbsp;&#43;&nbsp;</font><span style="color: rgb(126, 80, 79); font-family: Monaco; font-size: 11px;">accessToken</span><font face="Monaco" size="2">);
 //401 with 400 without</font></p>
<p style="color: rgb(57, 51, 255); font-family: Monaco; font-size: 11px; margin: 0px;">
<span style="color: rgb(0, 0, 0);">&nbsp; &nbsp; &nbsp;&nbsp;</span><span style="color: rgb(126, 80, 79);">httppost</span><span style="color: rgb(0, 0, 0);">.addHeader(</span>&quot;Content-Type&quot;<span style="color: rgb(0, 0, 0);">,&nbsp;</span>&quot;application/x-www-form-urlencoded&quot;<span style="color: rgb(0, 0, 0);">);</span></p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;">&nbsp;&nbsp; &nbsp; &nbsp;</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; ByteArrayEntity&nbsp;<span style="color: rgb(126, 80, 79);">entity</span>&nbsp;=&nbsp;<span style="color: rgb(147, 26, 104);">new</span>&nbsp;ByteArrayEntity(<span style="color: rgb(126, 80, 79);">query</span>.getBytes());</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(126, 80, 79);">httppost</span>.setEntity(<span style="color: rgb(126, 80, 79);">entity</span>);</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; HttpResponse&nbsp;<span style="color: rgb(126, 80, 79);">response</span>&nbsp;=&nbsp;<span style="color: rgb(3, 38, 204);">httpclient</span>.execute(<span style="color: rgb(126, 80, 79);">httppost</span>);</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;"><br>
</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(147, 26, 104);">int</span>&nbsp;<span style="color: rgb(126, 80, 79);">status</span>&nbsp;=&nbsp;<span style="color: rgb(126, 80, 79);">response</span>.getStatusLine().getStatusCode();</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;"><br>
</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(147, 26, 104);">if</span>&nbsp;(<span style="color: rgb(126, 80, 79);">status</span>&nbsp;== HttpStatus.<span style="color: rgb(3, 38, 204);">SC_OK</span>){</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; InputStream&nbsp;<span style="color: rgb(126, 80, 79);">stream</span>&nbsp;=&nbsp;<span style="color: rgb(147, 26, 104);">null</span>;</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;"><br>
</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(147, 26, 104);">try</span>{</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(126, 80, 79);">stream</span>&nbsp;=&nbsp;<span style="color: rgb(126, 80, 79);">response</span>.getEntity().getContent();</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;"><br>
</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ObjectMapper&nbsp;<span style="color: rgb(126, 80, 79);">mapper</span>&nbsp;=&nbsp;<span style="color: rgb(147, 26, 104);">new</span>&nbsp;ObjectMapper();</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(126, 80, 79);">token</span>&nbsp;=&nbsp;<span style="color: rgb(126, 80, 79);">mapper</span>.readValue(<span style="color: rgb(126, 80, 79);">stream</span>, JWSToken.<span style="color: rgb(147, 26, 104);">class</span>);</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; }<span style="color: rgb(147, 26, 104);">finally</span>{</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(147, 26, 104);">if</span>&nbsp;(<span style="color: rgb(126, 80, 79);">stream</span>&nbsp;!=&nbsp;<span style="color: rgb(147, 26, 104);">null</span>){</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(126, 80, 79);">stream</span>.close();</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; }</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; }<span style="color: rgb(147, 26, 104);">else</span>{</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(147, 26, 104);">throw</span>&nbsp;<span style="text-decoration: underline; color: rgb(147, 26, 104);">new</span><span style="text-decoration: underline;">&nbsp;InvalidTokenException()</span>;</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp; }</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px; min-height: 15px;">&nbsp;&nbsp; &nbsp; &nbsp;</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp; &nbsp; &nbsp;&nbsp;<span style="color: rgb(147, 26, 104);">return</span>&nbsp;<span style="color: rgb(126, 80, 79);">token</span>;</p>
<p style="font-family: Monaco; font-size: 11px; margin: 0px;">&nbsp;&nbsp; }</p>
</div>
<div><br>
</div>
<div>
<div></div>
</div>
</div>
<div>
<p class="MsoNormal" style="margin: 0cm 0cm 0.0001pt; font-size: 11pt;"><br>
</p>
</div>
</div>
<br>
<hr>
<font face="Arial" color="Gray" size="2"><br>
Causeway is committed towards reducing its carbon footprint. Please consider the environment before printing this email.<br>
</font><br>
<hr>
<font face="Arial" color="Gray" size="1"><br>
<br>
Disclaimer Notice :-<br>
<br>
The message and any attachments contained in this e-mail are intended for the named recipient(s) only. It may contain privileged or confidential information or information which is exempt from disclosure under the applicable laws. If you are not the intended
 recipient(s), you must not read, print, retain, copy distribute, forward or take any or refrain from taking any action in reliance on it or any of its attachments. If you have received or have been forwarded this e-mail in error, please notify us immediately
 by return e-mail or telephone (&#43;44 (0)1628 552000) and delete this message from the computer or any other data-reading device in its entirety.<br>
<br>
Please advise us immediately if you do not or your employer does not consent to Internet e-mail for messages of this nature.<br>
<br>
Internet communications cannot be guaranteed to be secure and error-free as the information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender and this Company therefore do not and shall not accept any liability or responsibility
 of whatsoever nature in the context of this message and its attachment(s) which arises as a result of Internet transmission. Opinions, conclusion, representations, views and such other information in this message that do not relate to the official business
 of this Company shall be understood as neither given nor endorsed by it.<br>
<br>
Registered Office: Comino House, Furlong Road, Bourne End, Buckinghamshire, SL8 5AQ<br>
Registered in England No: 3921897 www.causeway.com<br>
</font>
</body>
</html>