maremare
maremare

Reputation: 444

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?

Upvotes: 0

Views: 601

Answers (1)

Peterino
Peterino

Reputation: 16707

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.

Upvotes: 1

Related Questions