Unofficial Ruby client for the BlockScore Cognito API.
Frankenstein of demo code supplied by BlockScore, and our own stuff. client.rb
is ours,
everything else is theirs. The BlockScore code basically just handles the structuring
of their data models.
Currently in the "make it work" phase of development.
Add this line to your application's Gemfile:
gem 'cognito', git: 'https://github.com/opendoor-labs/cognito.git'
And then execute:
$ bundle
Create a client
client = Cognito::Client.new(api_key: 'API_KEY', api_secret: 'API_SECRET')
# default base URI is https://sandbox.cognitohq.com
#
# to set a different API:
client.base_uri('SOME_NEW_BASE_URI')
Create a Profile:
profile = client.create_profile!
Initiate a search against a phone number:
profile = client.create_profile!
search = client.search!(profile.id, '+14151231234')
The gem is available as open source under the terms of the MIT License.