2011-12-09 60 views

回答

0

嘗試使用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); 
    }); 
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" 
       .... 
       ... 
      } 
    } 
}); 
+0

任何想法如何創建vCard數據發送? – user1083596

+0

查看我編輯的答案,希望對你有所幫助。 – ShankarSangoli

+0

嘗試過,但沒有從服務器得到任何答覆。另一件事情如何包括這個「電話;類型=工作,聲音:(303)736-9406」 – user1083596

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 
    } 
}); 

的響應將包含原始電子名片的文字。

+0

這給出了錯誤作爲forbiden因爲apikey不包括在這裏。我已經在http://getsatisfaction.com/上發佈了我的代碼 – user1083596