任何人都可以帮助我如何调用此处提供的 post 方法。我无法使用 apigee 控制台甚至使用 jquery 来做到这一点!
http://fullcontact.com/docs/documentation/#vcard
对这个 post 方法的调用将使用 jquery.post() 完成,任何代码片段都将非常有帮助!
任何人都可以帮助我如何调用此处提供的 post 方法。我无法使用 apigee 控制台甚至使用 jquery 来做到这一点!
http://fullcontact.com/docs/documentation/#vcard
对这个 post 方法的调用将使用 jquery.post() 完成,任何代码片段都将非常有帮助!
试试这个。
$.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"
....
...
}
}
});
试试这个:
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 文本。
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);
});