0.01
No commit activity in last 3 years
No release in over 3 years
A Ruby wrapper for the FullContact API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.6
~> 1.4
~> 0.9
~> 2.6
~> 0.4
~> 1.6
~> 0.7

Runtime

~> 0.7.5
~> 1.2.0
~> 1.2.0
~> 0.4.2
~> 0.3.0
 Project Readme

FullContact Ruby Gem

Dependency Status

A Ruby wrapper for the FullContact API

Installation

gem install fullcontacter

Documentation

http://rdoc.info/gems/fullcontacter

Usage Examples

require "rubygems"
require "fullcontact"

# This could go in an initializer
FullContact.configure do |config|
  config.api_key = "fullcontact_api_key_goes_here"
end

# Get information about a email address
person = FullContact.lookup_by_email('prafulla.kiran@gmail.com')
  
# Get information about a twitter handle
person2 = FullContact.lookup_by_twitter('prafulla')

# Get person's family_name
puts person.contact_info.family_name

# Authenticate a user
FullContact.authenticate( { :username => 'prafulla.kiran@gmail.com', :password => 'test' } )

# Authentication is requred for all methods under the 'Contact' and 'ContactList' categories
FullContact.get_contact_lists

Copyright

Copyright (c) 2012 Brandon West, Jai Pandya, Prafulla Kiran

See LICENSE for details.