My aim is getting user info by accessToken using facebook api.I get response but email in this response is like this: aaaaaa\u0040mail.com.
For converting i add some properties but this doesn't work
RestTemplate restTemplate = new RestTemplate();
restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(Charset.forName("UTF-8")));
String facebook = restTemplate.getForObject(
"https://graph.facebook.com/me?access_token=" + facebookAccessToken,
String.class);
How can i convet this email to: aaaaaa@mail.com