0

任何人都可以帮助我如何调用此处提供的 post 方法。我无法使用 apigee 控制台甚至使用 jquery 来做到这一点!

http://fullcontact.com/docs/documentation/#vcard

对这个 post 方法的调用将使用 jquery.post() 完成,任何代码片段都将非常有帮助!

4

3 回答 3

0

试试这个。

$.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"
                ....
                ...
             }
     }  
});
于 2011-12-09T18:33:33.310 回答
0

试试这个:

var vcardString = 'your vcard string here';

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

响应将包含原始 vCard 文本。

于 2011-12-09T19:43:37.947 回答
0

尝试使用FullContact jQuery 插件

    var vcard = "BEGIN:VCARD\nVERSION:3.0\nEMAIL;TYPE=INTERNET:lorangb@gmail.com\nEND:VCARD";
    $.fullcontact.enrichVCard('YOUR API KEY',vcard,function(enrichedVCard){
           console.log(enrichedVCard);
    });
于 2011-12-09T23:57:41.143 回答