public String URLGetRankedConcepts(String url) throws IOException, SAXException, ParserConfigurationException, XPathExpressionException, ExtractorDocumentLevelException { CheckURL(url); AlchemyAPI_NamedEntityParams params = new AlchemyAPI_NamedEntityParams(); params.setUrl(url); params.setOutputMode(AlchemyAPI_NamedEntityParams.OUTPUT_JSON); params.setShowSourceText(true); return POST("URLGetRankedConcepts", "url", params); }
public String URLGetRankedKeywords(String url) throws IOException, SAXException, ParserConfigurationException, XPathExpressionException, ExtractorDocumentLevelException { CheckURL(url); AlchemyAPI_NamedEntityParams params = new AlchemyAPI_NamedEntityParams(); params.setUrl(url); params.setOutputMode(AlchemyAPI_NamedEntityParams.OUTPUT_JSON); params.setShowSourceText(true); if (sentimentEnabled) { params.setCustomParameters("sentiment", "1"); } return POST("URLGetRankedKeywords", "url", params); }