Example #1
0
  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);
  }
Example #2
0
  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);
  }