Need help in jquery.post() to fullcontact api

257 Views Asked by At

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 code snippets on the same will be very helpful!

3

There are 3 best solutions below

0
On BEST ANSWER

Try using the FullContact jQuery Plugin

    var vcard = "BEGIN:VCARD\nVERSION:3.0\nEMAIL;TYPE=INTERNET:[email protected]\nEND:VCARD";
    $.fullcontact.enrichVCard('YOUR API KEY',vcard,function(enrichedVCard){
           console.log(enrichedVCard);
    });
2
On

Try this.

$.post({
    url: "https://api.fullcontact.com/v2/person.vcf",
    type: "POST",
    data: {
             apiKey: "50211c64734215gh",
             vcard: {
                VERSION: "3.0",
            N: "Lorang;Bart",
            FN: "Bart Lorang",
            ORG: "FullContact",
            TITLE: "Co-Founder & CEO"
                ....
                ...
             }
     }  
});
1
On

Try this:

var vcardString = 'your vcard string here';

$.post({
    url: "https://api.fullcontact.com/v2/person.vcf",
    type: "POST",
    data: {
             apiKey: "YOUR KEY HERE",
             vcard: vcardString
    }
});

The response will contain the raw vCard text.