I have designed a Facebook application and need to add OAuth, Open Graph for complete functionality. Considering that I know nothing about Open Graph and little JS, I’d like to use a small wrap-up (python lib) which will provide the those features..
I searched over Google, stackoverflow and found few projects which provide some cool features but I am unable to choose..
python libs:
- django-social-auth
- fandjango
- facepy
- pyFacebook – I think this doesn’t offer OAuth.
I also use Google Data API in my project. So, the better option would be django-social-auth but I am not sure if I can do Open Graph with it..
Can anyone tell me what is the best, maintained, good lib?
(Please do mention if its not in the above list)
django-social-authis really great if you want to build a website that allows users to log in with Facebook, but if you’re building an application on Facebook.com you probably want to use something likefandjango. Either way, you will need a different kind of library (like, say,facepy) to interact with Facebook’s API once you’ve retrieved an access token from the user.Full disclosure: I am the author of
fandjangoandfacepy.