введите описание изображения здесь
Я попытался сделать запрос через Dropbox Doc, и получить это:
urlToken = 'https://api.dropbox.com/1/oauth2/token'
headers = {
'code': input(),
'grant_type': 'authorization_code',
'client_id': '#############',
'client_secret': '######',
'redirect_uri': 'https://localhost'
}
request = requests.post(urlToken, headers=headers)
ВЫВОД:
{"error_description": "No auth function available for given request", "error": "invalid_request"}