Аутентификация API Dropbox (ошибка: [400] 'invalid_client')
Ниже приведен код из учебников Dropbox
from dropbox.client import DropboxOAuth2FlowNoRedirect, DropboxClient
from dropbox import rest as dbrest
auth_flow = DropboxOAuth2FlowNoRedirect('r********', 'r***********')
authorize_url = auth_flow.start()
print ('1. Go to: ' + authorize_url)
print ('2. Click \'Allow\' (you might have to log in first).')
print ('3. Copy the authorization code.')
auth_code = input('Enter the authorization code here: ')
try:
access_token, user_id = auth_flow.finish(auth_code)
except (dbrest.ErrorResponse) as e:
print('Error: %s' % (e,))
c = DropboxClient(access_token)
я получаю следующий ответ
Ошибка: [400] Traceback 'invalid_client' (последний вызов был последним):
Файл "test2.py", строка 17, в c = DropboxClient(access_token) NameError: имя 'access_token' не определено