public static Map parser(HttpResponse response) throws ParseException {
String jsonContent = null;
try {
jsonContent = SocialHttpClientSupport.getContent(response);
} catch (SocialHttpClientException e) {
throw new ParseException(0);
}
return parser(jsonContent);
}