I made an application, this application is on the fanpage tab. But when someone invites their friends, the invitation is redirected to the application page, and not to the fanpage tab.
I use this:
function invite(){
FB.ui({
method: 'apprequests',
message: 'message',
data: 'tracking information for the user'
},
function(response) {
location.href="CANVAS_URL?req="+response.request_ids;
}
);
In my application configuration, I have:
Canvas url: url on my website
Url tab: url on my website
How can i do this?
source
share