Search code examples
pythonpython-2.7dropboxdropbox-api

is it possible to create an app & get access token in dropbox using python code


I picked dropbox today. Please assist keeping that in mind. I need to write a code which will create dropbox develop app. From there need to retrieve key & secret value. useing that need to retrieve access token.

Is there any way to do in code. If not, please suggest me any recursive way to do it.

So you may assist me, how to get access token from key & secret without going to web browser

Thanks


Solution

  • According to their docs, dropbox uses OAuth2. Have a look @ their sdk/api or some OAuth2 examples and libraries in python. For that, google is your friend.

    This question has some links which may be of some help.