HttpClient httpClient = HttpClientBuilder.create().build();
ObjectMapper mapper = new ObjectMapper();
HttpGet httpGet = null;
HttpResponse response = null;
HttpEntity entity = null;
String responseString = null;
httpGet = new HttpGet(ID_URL + "?key=" + ID_APP_KEY_WWW + "&idcard=" +IDNumber + "&realname=" + name);
try {
response = httpClient.execute(httpGet);
entity = response.getEntity();
responseString &#