FullContact is an online address book service with APIs for Java, iOS, PHP, jQuery and more.
Questions tagged [fullcontact]
21 questions
9
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ş
- 142
- 1
- 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,426
- 9
- 69
- 139
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…

Mohamed El Mahallawy
- 911
- 1
- 6
- 9
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,619
- 7
- 25
- 51
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
- 13
1
vote
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
- 303
- 3
- 7
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
- 954
- 2
- 11
- 28
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
- 101
- 1
- 7
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
- 4
- 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
- 11
- 5
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
- 11
- 5
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
- 358
- 1
- 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
- 3
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…