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'm working on developing a node.js app using mongoDB as a database. I'm working on developing fairly simple Facebook integration, and in addition to outsourcing user authentication to FB, I'd like to retrieve a list of the user's FB friends so that they may later have the option to post to a friend's wall through the app.

I can't figure out what exactly is the best way to approach this problem, though. Obviously this information changes fairly often (new friends, etc) - so I can't simple save the friends to my database the first time a user logs in and then forget about it. At the same time, it seems impractical to fetch the user's friendslist from FB every time they log in. Another option would be to not save the friendslist at all, and simply send a GET request to Facebook everytime I need it -- this could be fairly inefficient though, especially if I develop more integration with FB features. Finally, I'd read about about Facebook's real-time subscription API -- https://developers.facebook.com/docs/reference/api/realtime/. This would allow me to update the friendlist on the fly -- but might be a little more work for me to develop.

I assume this is a fairly common challenge, so I was wondering how others tackle this issue, and if there is a sort of "best-practice" way of managing FB information within a stand alone app?

share|improve this question

2 Answers

up vote 0 down vote accepted

It really depends on what you'll be using that data for. You can do two things:

  • fetch and cache the friends list when needed, expiring some minutes/hours later
  • get a script polling all your users friend list once per hour or so in order to keep it updated
share|improve this answer
Makes sense. I decided to go with fetching the friends list when needed for now (with a UI element that shows a loading state while the GET is made). I think after I start to add deeper FB integration I will try to come up with a better way of storing/updating that data in the database. – BlueMoon Mar 8 '12 at 22:38

Could a concept similar to the Facebook widget help. In 'view-only' mode it could show a list of friends cached in the database since the widget area is anyway showing a subset of the complete friend list. In a situation where an update is to be made (nominate a friend or something like that) you should query Facebook to ensure that the data is the latest.

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.