任何人都可以幫助我如何調用此處提供的post方法。我無法使用apigee控制檯甚至使用jquery!在jquery.post()中需要幫助以fullcontact api
http://fullcontact.com/docs/documentation/#vcard
這個帖子方法調用將使用jquery.post()來完成,在相同的任何代碼段會有很大的幫助!
任何人都可以幫助我如何調用此處提供的post方法。我無法使用apigee控制檯甚至使用jquery!在jquery.post()中需要幫助以fullcontact api
http://fullcontact.com/docs/documentation/#vcard
這個帖子方法調用將使用jquery.post()來完成,在相同的任何代碼段會有很大的幫助!
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);
});
試試這個。
$.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"
....
...
}
}
});
任何想法如何創建vCard數據發送? – user1083596
查看我編輯的答案,希望對你有所幫助。 – ShankarSangoli
嘗試過,但沒有從服務器得到任何答覆。另一件事情如何包括這個「電話;類型=工作,聲音:(303)736-9406」 – user1083596
試試這個:
var vcardString = 'your vcard string here';
$.post({
url: "https://api.fullcontact.com/v2/person.vcf",
type: "POST",
data: {
apiKey: "YOUR KEY HERE",
vcard: vcardString
}
});
的響應將包含原始電子名片的文字。
這給出了錯誤作爲forbiden因爲apikey不包括在這裏。我已經在http://getsatisfaction.com/上發佈了我的代碼 – user1083596
http://mattgemmell.com/2008/12/08/what-have-you-tried/ – locrizak