Já uploaduji soubory tímto skriptem
echo ($cas);
$path = $jsoubor;
$fp = fopen($path, 'rb');
$size = filesize($path);
$cheaders = array("Authorization: Bearer xxxxxxxxxtokem ",'Content-Type: application/octet-stream','Dropbox-API-Arg: {"path":"/xxxxxx/'.$path.'", "mode":"add"}');
$ch = curl_init('https://content.dropboxapi.com/2/files/upload');
curl_setopt($ch, CURLOPT_HTTPHEADER, $cheaders);
curl_setopt($ch, CURLOPT_PUT, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_INFILE, $fp);
curl_setopt($ch, CURLOPT_INFILESIZE, $size);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
echo $response;
curl_close($ch);
fclose($fp);
unlink($jsoubor);
a ten token si musím vygenerovat napřed ,tak že mě to nefunguje jak ty popisuješ abych si provedl ten skript Access Token a pak tímto výše uvedeným skriptem upload soubory díky