こんにちは私はちょうど知りたかったのですが、次のコードによって生成されたマルチフレンドセレクターからユーザーが何人のフレンドを選択したかを知る方法はありますか?
function InviteFriends(){
FB.ui({ method: 'apprequests',
message: 'come on man checkout my application.'});
}
ありがとう
こんにちは私はちょうど知りたかったのですが、次のコードによって生成されたマルチフレンドセレクターからユーザーが何人のフレンドを選択したかを知る方法はありますか?
function InviteFriends(){
FB.ui({ method: 'apprequests',
message: 'come on man checkout my application.'});
}
ありがとう
request_ids
はい、Facebookは送信されたすべてのリクエストに対してを送り返します。したがって、リクエストの数は、選択した友達の数と同じになります。
アクセス方法request_ids
は、このチュートリアルで説明されています。方法:FacebookGraphAPIを使用してアプリケーションリクエストを送信する
FB.ui({
method: 'apprequests',
message: 'Check out this application!',
title: 'Send your friends an application request',
},
function (response) {
if (response && response.request_ids) {
// response.request_ids is what you need
} else {
alert('canceled');
}
});