ここで提供されている post メソッドを呼び出す方法を教えてください。apigee コンソールを使用しても、jquery を使用しても実行できません。
http://fullcontact.com/docs/documentation/#vcard
この post メソッドへの呼び出しは、jquery.post() を使用して行われます。同じコード スニペットは非常に役立ちます。
ここで提供されている post メソッドを呼び出す方法を教えてください。apigee コンソールを使用しても、jquery を使用しても実行できません。
http://fullcontact.com/docs/documentation/#vcard
この post メソッドへの呼び出しは、jquery.post() を使用して行われます。同じコード スニペットは非常に役立ちます。
これを試して:
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 テキストが含まれます。
これを試して。
$.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"
....
...
}
}
});
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);
});