I wanted to let my users to invite their facebook friends to my site, I used this plog post to do so: http://www.9lessons.info/2012/07/facebook-invite-friends-api.html and here is my code:
FB.init({
appId:'334259856684025',
cookie:true,
status:true,
xfbml:true
});
FB.ui({
method: 'apprequests',
title: 'inviting your friends to my-site.com',
message: ' is inviting you to joing his network '
}, requestCallback);
function requestCallback(response){
saveRequestId(response.request);
saveRecipients(response.to);
}
after sending this apprequest to the user's friends (I'm saving here request_ids & recipients' facebook id), they will get a notification on facebook, and clicking on this notification will redirect them to my site with this url:
http://my-site.com/?request_ids=136811583152593&ref=notif&app_request_type=user_to_user
which will give me the same request_ids that the sender has sent in the first place,
which will enable me from linking these 2 users together in my site
The question is:
how can I read also the facebook's user-id for the user that has clicked on this link, to be sure that he is the actual recipient and not another one hacking my site to be linked with the sender, or even another one who just copied the link from the actual recipient?