I'm working on a small web application that allows users to sign in with facebook, and create and write small journals. Their facebook friends can then log in, and see what their friends have written.
I've been using Django-Facebook to enable users to log in with their facebook accounts, and so far I have followed the documentation on their website, and have been successfully able to log in with Facebook.
I'm a little confused over the procedure of getting and saving friends. There seems to be an API call get_and_store_friends which takes in a user, and saves it to the database, but how would I retrieve this data from the database (or would it be more appropriate to call get_friends every time instead of storing them?