When sending an AppRequest using from a page Tab:
FB.ui({
method : 'apprequests',
message : 'message',
title : 'Friend'
}, function (response){}));
I want the receiving user to be directed to the page tab and not the canvas application page.
is there a redirect_uri parameter that’s no documented or should I just do a hard refresh on the canvas?
Also would like to know if I can force the user to select only one friend in this dialog in used to be possible in the old requests widget?
Thoughts appreciated
If a user clicks ‘Accept’ on a Request, they will be sent to the Canvas Page URL of the app that sent the Request. This URL will contain an additional GET parameter request_ids, which is a comma delimited list of Request IDs that a user is trying to act upon:
https://apps.facebook.com/%5Bapp_name%5D/?request_ids=%5Brequest_ids%5D
You can the redirect to the fan page tab.
Atul Agrawal, Founder, ascratech.com