tendai-zw / piplapis-java

Java client library for Pipl's APIs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

piplapis Java Library

This is a Java client library for easily integrating Pipl's APIs into your application.

Library Requirements

  • Google Gson, you can find it inside this project under lib/google/ or download from here.
  • The library was tested on Java 7 but will probably work on earlier versions as well.

Installation

  • Import the piplapis jar file (can be found under lib/) or compile the source code (can be found under src/)

Hello World

import com.pipl.api.search.SearchAPIRequest;
import com.pipl.api.search.SearchAPIResponse;
import com.pipl.api.search.SearchConfiguration;

SearchConfiguration configuration = new SearchConfiguration();
configuration.setProtocol("https");
configuration.apiKey = 'YOURKEY'
  
SearchAPIRequest request = new
SearchAPIRequest.Builder().email("clark.kent@example.com").firstName("Clark").lastName("Kent").configuration(configuration).build();

Getting Started & Code Snippets

Pipl's Search API

About

Java client library for Pipl's APIs

License:Other


Languages

Language:Java 99.8%Language:Shell 0.2%