I got the problem with diffbot url encode problem. I have a URL and I pass url when I call diffbot api like this.
//JsonNode json= (JsonNode)client.analyze(DiffbotClient.ResponseType.Jackson,url);
but I got error massage about url encoding.this is error message that I got
{"errorCode":500,"error":"URL encoding"}
So I change my code system like this.
//JsonNode json= (JsonNode) client.analyze(DiffbotClient.ResponseType.Jackson,u.getHost()+u.getPath()+URLEncoder.encode("?"+u.getQuery(),"UTF-8"));
but it doesn't work out and Diffbot
print like that
{"errorCode":500,"error":"Error."}.
what kind of Encoding format diffbot API
is using?