Im using the facebook request dialog to show my friend list and invite this in a Facebook Web APP, using this:
function sendRequestViaMultiFriendSelector() {
FB.ui(
{
method: 'apprequests',
message: 'Selección de amigos a los que invitar a KugaBar'
}, requestCallback);
}
function requestCallback(data) {
console.log(data);
}
it works, ok, but i need to identify the user when enter in my APP, y see the requestCallback data and see a "request", but when the users click in the notification and enter in the APP i dont know how identify the request to detect if the user is accesing by the notification.
EDIT: OK I found it, the param in the GET vars are "request_ids", but one problem appear, this param only come if the user previously have acepted the permissions, if the user clik on the notification, accept the permissions, and enter, this param dosent exist, if the user enter again (not need to acept nothing) this param exist in the URL.
Have any method to get this param in the first time the user enter?
It is possible?
Thanks