<html><head></head><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><br>Hello,<br>I have a javascript application with keycloak javascript adapter, I use<br>direct grant to get the initial offline token and save to database and<br>it works great, the problem is when I want to get an access token the<br>adapter fails silently. Here is how I initiate the adapter<br><br>&nbsp;&nbsp; &nbsp;keycloak.init({<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; refreshToken: response.refresh_token,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; checkLoginIframe: false<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; })<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .success(authenticated =&gt; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(!authenticated)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dispatch(loginFailure())<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else {<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;....<br>&nbsp;&nbsp; &nbsp;&nbsp; }<br><br>then I tried to get the token directly from google chrome "postman"<br>tool:<br><br>POST<br>http://localhost:8080/realms/sisdn-realm/protocol/openid-connect/token<br><br>headers:<br>Content-Type: application/x-www-form-urlencoded<br>body:<br>grant_type=refresh_token<br>refresh_token=eyJhbGciOi...<br>client_id=sisdn<br><br>but the server responds with not-found, what am I doing wrong?<br><div id="yui_3_16_0_1_1455304113173_6474" dir="ltr"><br></div><div id="yui_3_16_0_1_1455304113173_6475"><br></div></div></body></html>