Skip to content Skip to sidebar Skip to footer

Dropbox Api Request Token Not Working With Python 3?

I'm maintaining a Python application using the official Dropbox API. To ask the users to let my application use their Dropbox account, I use a small script using the DropboxSession

Solution 1:

Try to use version 1.6

$ pip install dropbox==1.6

Solution 2:

Better than waiting for the SDK to be compatible, you can use (or contribute to and use) the "community" fork, dropbox-py3 (here on github).

(Those quotes are big quotes. For now it's just me coding this, and just the part I need, but everyone's welcome to help. I think it's mainly identifying the few parts that are missing a ".encode" because it's mixing bytes and strings.)

Post a Comment for "Dropbox Api Request Token Not Working With Python 3?"