Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.34 KB

File metadata and controls

53 lines (41 loc) · 1.34 KB

About

This is the Java client library for AYLIEN's APIs. If you haven't already done so, you will need to sign up.

Installation

Maven users

Add this dependency to your project's POM:

<dependency>
  <groupId>com.aylien.textapi</groupId>
  <artifactId>client</artifactId>
  <version>0.5.1</version>
</dependency>

sbt users

Add this to your libraryDependencies:

"com.aylien.textapi" % "client" % "0.5.1"

See the Developers Guide for additional documentation.

Example

import com.aylien.textapi.TextAPIClient;
import com.aylien.textapi.parameters.*;
import com.aylien.textapi.responses.*;
import java.net.URL;

class Example {
  public static void main(String[] args) throws Exception {
    TextAPIClient client = new TextAPIClient("YourApplicationId", "YourApplicationKey");
    ConceptsParams.Builder builder = ConceptsParams.newBuilder();
    builder.setUrl(new URL("http://www.bbc.com/news/science-environment-30097648"));
    Concepts concepts = client.concepts(builder.build());
    System.out.println(concepts.getText());
    for (Concept c: concepts.getConcepts()) {
      System.out.println(c.getUri());
      for (SurfaceForm sf: c.getSurfaceForms()) {
        System.out.println(sf.getString());
      }
    }
  }
}