/fullcontact4j

A Java client for the FullContact API

Primary LanguageJavaOtherNOASSERTION

#FullContact4j

A Java client for the FullContact API

##Maven To fetch FullContact4j from Maven, you'll need to connect to Bintray and fetch the artifact like this:

<repositories>
  <repository>
    <id>fullcontact</id>
    <url>http://dl.bintray.com/content/fullcontact/fullcontact-oss</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>com.fullcontact</groupId>
    <artifactId>fullcontact4j</artifactId>
    <version>${version}</version>
  </dependency>
</dependencies>

##Gradle

repositories {
    maven {
        url "http://dl.bintray.com/content/fullcontact/fullcontact-oss"
    }
}

dependencies {
    compile group: "com.fullcontact", name: "fullcontact4j", version: "${version}"
}

##Usage:

#####Set a Custom User-Agent

  • FullContact fullContact = new FullContact("my-api-key").setUserAgent("My Custom Agent/1.0");

##Dependencies