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.

If my Facebook app knows that an app user (FB ID = foo) has sent an app request (request ID = bar) to another FB user (user2), is there a way to find the FB ID of user2?

share|improve this question

1 Answer

up vote 1 down vote accepted

In general this should be available prior to authentication of user2.

But there is some edge case:

If this is a request which involves only one recipient, you know the id of that request (it's passed to your canvas once user accepting it in request_ids URL argument) and don't mind using application's access_token this is pretty easy.

Just get the details of request from Graph API:

https://graph.facebook.com/REQUEST_ID?access_token=APPLICATION_ACCESS_TOKEN

Result will include all the request details including recipients list.

Beware, this method allow you to know to whom request was sent but it's not allow you to ensure that visitor is the same person (it takes nothing to fake request accept if someone know request id).

BTW, APPLICATION_ACCESS_TOKEN may be either one described in Authenticating as an App or an older APP_ID|APP_SECRET format...

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.