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 am trying to implement sending gift to Facebook friends for my mobile app.

When the recipient checks the gifts, I would like to show the sender's facebook name.

Now I am thinking about two options:

  1. Sender links to FB ID, when send the gift, put the sender's FB ID in the request so it is stored in DB along with the gift. On the recipient side, when he queries gift, the app will send an extra query to FB to get the sender's facebook name based on the stored sender FB ID.

  2. When the sender links to FB ID, send an extra query to FB to get the sender's facebook name. When send the gift, put the sender's Facebook username in the request so it is stored in DB along with the gift. So on the recipient side, the app will directly get the gift information along with the sender's facebook name.

For 1), if a user has 10 requests, the app needs to send 10 requests (if not in batch mode) to facebook to get the sender facebook information.

For 2), the app saves the Facebook information in the server, which I don't feel quite comfortable. The user profile might update after he sends a gift, also it makes the server less flexible.

I am not sure which is the typical way to handle this. Does it worth it to go option 2) to save some extra requests to Facebook?

share|improve this question

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.