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:
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.
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?
