from dropbox.client import DropboxOAuth2FlowNoRedirect
from dropbox.client import DropboxClient
答案 0 :(得分:0)
尝试使用:
# Include the Dropbox SDK
import dropbox
# Get your app key and secret from the Dropbox developer website
app_key = 'INSERT_APP_KEY'
app_secret = 'INSERT_APP_SECRET'
flow = dropbox.client.DropboxOAuth2FlowNoRedirect(app_key, app_secret)
某些项目无法自行导入。