djangofacebookfacebook-graph-apidjango-facebook

Django-facebook: how to repost to a group or fanpage


Please help, I'm not familiar with facebook API.

I have a facebook app with a token and secret. My users are happily authenticated via python-social-auth. I've installed django-facebook.

I want to create a group (or a fanpage) and make my content automatically reposted to facebook on model.save()

How do I implement this?


Solution

  • Take a look at the Art&Logic blog with their Tutorial: Posting to Facebook from a Django App. I think that's exactly what you're looking for.

    They use facebook-sdk instead of django-facebook, though.