apprequests
APIを使用して友達をアプリに招待するFaceBook アプリがあります。これで、ユーザーが招待状を受け取ると、アプリの最初のページにリダイレクトされます。
アプリ内の特定のページにリダイレクトするにはどうすればよいですか?
これは私apprequests
のように見えるものです:
function newInvite(){
var msg = document.getElementById('msg_look_id').value;
var receiverUserIds = FB.ui({
method : 'apprequests',
message: msg,
title: "Select friends to send ",
}, function(response) {
alert("IDS : " + response.request_ids);
});
}