限り、あなたがあなたのページにFacebookのJSを持っているとして、それは、これは友人の招待状を作成するように簡単です:
<script>
FB.ui(
{
method: 'friends.add',
id: fbid // assuming you set this variable previously...
},
function(param){
// If you have FireFox + FireBug or Chrome + developer tools:
console.log(param); // log response to javascript console
// If they cancel params will show:
// {action:false, ...}
// and if they send the friend request it'll have:
// {action:true, ...}
// and if they closed the pop-up window then:
// param is undefined
}
);
</script>
あなたがFacebook上でJavaScriptコンソールアプリを使用してこれをテストすることができます。
http://developers.facebook.com/tools/console
タグを含めて、上記のスクリプトを貼り付けるか、テキスト領域の下部にある "例"ボタンをクリックして "fb.ui - friends.add"の例を探します。
+1「console.logはFirefoxのデバッグ機能です」と追加してください。 – sv88erik