I added my web site twitter login thanks to omab's social_auth project. It works well.
But I want make the authenticated users share twits on my web site possible .
How can I do this requirement?
Any helps and ideas will be appreciated.
I added my web site twitter login thanks to omab's social_auth project. It works well.
But I want make the authenticated users share twits on my web site possible .
How can I do this requirement?
Any helps and ideas will be appreciated.
I am not sure about
social_auth
, butdjango-allauth
stores (and updates) the token on each login, over at:https://github.com/pennersr/django-allauth/blob/master/allauth/socialaccount/models.py#L82
Then it is simply a matter of feeding that token to e.g.
Tweepy
(http://tweepy.github.com) in order to post a tweet on behalf of the user.