Django Facebook Connect App Recommendation

前端 未结 6 1786
逝去的感伤
逝去的感伤 2021-01-30 21:39

I want to implement Facebook connect login for my Django site and I\'ve checked the already existing apps.

So far, I have found Django-Socialauth, django-socialregistrat

6条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-30 22:16

    I've used django-allauth and django-facebook on two different projects.

    django-allauth was great and provided very good support for logging in and creating user profiles. It could also work with other auth providers, which I didn't implement.

    django-facebook worked out of the box, but it's only compatible with Facebook. It also provided simple APIs for fetching users' likes and friends from Facebook directly into the db, which I liked very much!

    facebook.get_and_store_likes(user)
    facebook.get_and_store_friends(user)
    

提交回复
热议问题