# This could go in an initializer
FullContact.configure do |config|
config.api_key = 'fullcontact_api_key_goes_here'
config.auth_type = :headers # :header or :query
end
Should be
# This could go in an initializer
FullContact.configure do |config|
config.api_key = 'fullcontact_api_key_goes_here'
config.auth_type = :header # :header or :query
end
Took me a little bit of time to figure this out.
Should be