I would like to play with the twitter API, but I’m lost with how access the API, get TimeLine, RT, etc, after login with django social auth.
Can anyone provide an example of another twitter library that I can use to access streaming, timeline, etc. after authenticating with Django social Auth?
I’m checking tweepy but I can’t see how to use it if I don’t need to use the tweepy auth method.
This example from the Django-social-auth docs shows what you need:
The UserSocialAuth model will automatically store the access tokens you need. You access them via the
tokensattribute.Hope that helps.