Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

They are saved in FacebookUser model and you have friends method in profile model.

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.