We've set up an application that uses the django-social-auth
extension to authenticate users with Facebook. The authentication works fine, but we are not clear on how to go about fetching useful information from Facebook (friends lists, likes, etc.)
It appears that django-facebook
handles some of this functionality, but also handles the authorization aspects. Is there an application that would sit neatly on top of django-social-auth
and provide a framework for using facebook data? Using django-social-auth
and django-facebook
together seems kludgy.
Asked
Active
Viewed 1,909 times
6

nat
- 184
- 1
- 4
2 Answers
2
It shouldn't be too hard to roll it yourself. The Facebook graph API is just HTTP get requests with the access_token, and it returns JSON data.

Amandasaurus
- 58,203
- 71
- 188
- 248