1👍
✅
I’m doing this right now for flask. The easiest option is just to plug-in some server side oauth calls.
It’s a reasonably large amount of code so I won’t copy and paste the whole thing here, but the github page for simplegeo’s oauth2 actually has a “logging into django with twitter” walkthrough that should help out.
After having gone through a few options, I think I like twython best. It’s just this to do the first step of the oauth:
from twython import Twython
t = Twython(app_key='key',
app_secret='secret',
callback_url='http://google.com/')
auth_props = t.get_authentication_tokens()
print auth_props
Source:stackexchange.com