ユーザーがfbアプリのリクエストを受け入れるか、ユーザーをカスタムURLにリダイレクトする必要がある場合は、URLをリダイレクトするために追加のパラメーターを渡す必要があります。どうすればこれを行うことができますか?...次のコードを参照してください。
$('#sendRequest').click(function() {
FB.ui(
{
method : 'apprequests',
message : $(this).attr('data-message')
},
function (response) {
// If response is null the user canceled the dialog
if (response != null) {
logResponse(response);
}
}
);
});