Questions tagged [fullcontact]

FullContact is an online address book service with APIs for Java, iOS, PHP, jQuery and more.

21 questions
6
votes
1 answer

MongoError: "doc parameter must be an array of documents"

Im trying to code an angular app that gets information from fullcontact API as a json and insert that to mongodb.I can successfully get json file but when i try to insert it to mongodb, i get various errors.I solved many of them but im stuck in this…
Onur Durmuş
  • 112
  • 1
  • 7
4
votes
4 answers

Data Formatters temporarily unavailable, will re-try after a 'continue'

Here is the error message I get: ContactsWithPN - start loop Program received signal: “0”. Data Formatters temporarily unavailable, will re-try after a 'continue'. (Unknown error loading shared library…
amehta
  • 439
  • 6
  • 14
3
votes
1 answer

Grab twitter ids based on emails like fliptop or fullcontact

How do these APIs use email to grab twitter id which is not public available? For example, http://www.fliptop.com/peoplegraph http://www.fullcontact.com/developer/docs/person/
angelokh
  • 9,394
  • 6
  • 61
  • 119
2
votes
0 answers

FullContact batch request using RestSharp

How can we implement batch request processing in FullContact api using RestSharp. A sample post request for the batch request in the FullContact api is given as POST /v2/batch.json?apiKey=[your API key] HTTP/1.1 Content-type: application/json Host:…
AR M
  • 243
  • 3
  • 6
2
votes
1 answer

Queuing API calls to fit rate limit

Using Full Contact API, but they have a rate limit of 300calls/minute. I currently have it to set that it does an API call when uploading the CSV file of emails. I want to queue it such that once it hits the rate limit or does 300 calls, it waits…
1
vote
1 answer

FullContact Webhook Callback Fails

I'm using the FullContact Card Reader API. From what I can tell when making a request to process a business card I need to send the FullContact API a image of a business card along with a webhook. sending script:
Austin
  • 1,470
  • 4
  • 21
  • 45
1
vote
1 answer

How to run a "if" statement on returned 404s from external API call ruby

I'm testing out the Fullcontact API to retrieve information about specific people. If the person that I'm looking up with their API doesn't exist in their database it would return a 404 Not found error. I'm trying to get around that by retrieving…
Wilson
  • 181
  • 11
1
vote
1 answer

Pull FullContact Ruby Gem Photos?

https://github.com/fullcontact/fullcontact-api-ruby I'm trying to use the FullContact API Wrapper for Ruby (it's a gem) instead of the pure REST API. I'm trying to figure out how to grab the person's profile pictures from email address. I know how…
Tejas Manohar
  • 873
  • 1
  • 10
  • 26
1
vote
0 answers

How to handle a 404 without the function breaking?

Basically, I have an array of emails (attemptsArray) that I look up using FullContact's API. attemptsArray.forEach(function(attempt) { $.fullcontact.emailLookup(APIKEY, attempt, function(obj) { attemptsMade = attemptsMade + 1 …
Alex Schiff
  • 81
  • 1
  • 6
0
votes
3 answers

Need help in jquery.post() to fullcontact api

Can anybody help me how to invoke the post method provided here. I am unable to do so using the apigee console and even with jquery! http://fullcontact.com/docs/documentation/#vcard the call to this post method will be done using jquery.post(), any…
user1083596
  • 145
  • 1
  • 3
  • 10
0
votes
1 answer

Using rescue block to handle response code errors. Instead of next, how can I output the status code in output instead of skipping it?

I have some code to make API requests through Full contact to resolve domains for a list of company names, and output these in a csv table. I found the code was terminating whenever it hit a response code other than 200 or 202. I have the following…
Belle
  • 1
  • 4
0
votes
0 answers

When trying to access a value from key, getting `[]': no implicit conversion of String into Integer (TypeError)

So I am using Full Contact api to fill in information about certain companies. I am trying to create an array of values for two keys: "lookupDomain" and "orgName" which (from my understanding) are located in the hash lookupDomain. Here is a snippet…
Belle
  • 1
  • 4
0
votes
1 answer

getting 403 error(Fullcontact Api key contains non-hex characters )

Hi I am trying to update fullContact apiKey My new key is in this format -> Wa**IuyqQZd****YhUiko**Asdc**POU My old key is in this format -> aq******982ad**s I am calling fullContact APi from Node Js ajax call : var url =…
heisenberg
  • 310
  • 3
  • 14
0
votes
1 answer

Keep receiving Error: 'urllib.error.HTTPError: HTTP Error 400: Bad Request'

EDIT: Solved. I removed the {} from the API key. I also added a response2 = response.read(), and returned that instead. I've been experimenting with the full-contact API system, and everything seems to be running smoothly, except that my (valid)API…
Nemo726
  • 21
  • 2
0
votes
0 answers

fetch request that returns undefined

What Im trying to do is use the string that is sent from the frontend as the key to retrieve the information I need. The problem part is the let answer, when I use it, I receive undefined. But if if I use "Apple.com" instead for example, the fetch…
1
2