How do I get an OAuth access token in python? -
How do I get an OAuth access token in python? -
(i asked on superuser got no response ...)
i'm trying follow tutorial dropbox api @ http://taught-process.blogspot.com/2012/05/asdlasd-asda-sd-asd-asdasd.html
but when lastly part
#print token future reference print access_token
what
<dropbox.session.oauthtoken object @ 0x1102d4210>
how actual token? should like:
oauth_token_secret=xxxxxxx&oauth_token=yyyyyyy
(i'm on mac)
look around in properties , methods of object, apply "dir" on object. in case:
dir(access_token)
i'm pretty sure you're gonna find in object give token need.
python oauth dropbox
Comments
Post a Comment