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've managed to implement the "send Request" functionality for my App on facebook following the docs here

Now, in case user 'A' accepts a request sent to him by user 'B', I want user 'B' to get an app-specific gift (image). My question is, how would I find out it was user 'B' who invited user 'A'? (and not user 'C')

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

Store the request id in your database along with the user B who initiated the request.

When user A clicks on the request they will be redirected to your app and Facebook will send you the request id. Look up the request ID in your db to get the user who initiated.

Some examples of getting the request id are included in the Facebook documentation about deleting requests.

Although not technical, you might also want to review the documentation on requests best practices which has a section on gifting.

An alternative is to get the sender from the graph api (note this is almost always slower than the above solution). By concatenating the user_id to the request_id you have a specific request object id, and you could issue a GET request to the graph API that looks like this:

https://graph.facebook.com/<REQUEST_OBJECT_ID>?access_token=APP_ACCESS_TOKEN

In the response, the sender is in the from attribute:

{
  "id": "259855964134806_4", 
  "application": {
    "name": "Betcafe",
    "namespace": "betcafe-play", 
    "id": "240039049434634"
  }, 
  "to": {
    "name": "Zuck", 
    "id": "4"
  }, 
  "from": {
    "name": "Todd Chaffee", 
    "id": "532338216"
  }, 
  "message": "Join my team so we can pass balls to each other and help Milan win the weekly cup!", 
  "created_time": "2012-09-10T16:43:45+0000"
}
share|improve this answer
thanks, exactly what I needed. – astralmaster Sep 29 '12 at 14:26
You don’t actually have to store anything into your own database, as Facebook provides all the info you need. When a user accepts a request, you get the request id(s) they acted upon – and when you look that up via the API, you get the sending user in structure called from. (You might do it nevertheless, to speed things up. Looking something up in your own DB might be quicker, than making an API request.) – CBroe Sep 29 '12 at 15:32
CBroe, good point. I've added the alternative to the answer. – Todd Chaffee Sep 29 '12 at 16:19

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.