Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
You will not get the user’s id until they connect to your app. – CBroe Feb 12 at 16:25
I know that if the user granted an access_token to my app, then I can get his basic info, and also the IDs of all his friends, but the scenario here doesn't involve asking the user to grant basic permissions to my app, my FB app is almost hidden for the sender and the recipients, so how do you think the scenario should be? – AbdelHadyMu Feb 12 at 16:58
The scenario should be, the user connects to your app. Otherwise they obviously are not interested in the invite, so you have no business knowing anything about them. – CBroe Feb 12 at 19:33
the user already clicked on the notification that will redirect him to my-site.com, so he is already interested, and I don't want any of his information, I only need his ID – AbdelHadyMu Feb 13 at 11:03
That does not change the facts at all. If you want to know anything about the user, they have to connect to your app first. That’s how it works, whether you like it or not. – CBroe Feb 13 at 16:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.