[Django]-Post to Facebook/Twitter using Django?

2👍

A package such as django-socialregistration would allow you to authenticate with both.

Alternatively, you could roll your own using one of these:

👤Dolph

1👍

You want Twython:

https://github.com/ryanmcgrath/twython-django/blob/master/twython_django_oauth/views.py

Believe me, I have been down this road, and the example Django views in the link above are the most straightforward of twitter oauth2 examples.

See also https://github.com/ryanmcgrath/twython

Leave a comment