It is possible to access an img in dropbox direct using php, without using the download API method?
Or it's only possible to see metadata?
//see metadata
$folderMetadata = $dbxClient->getMetadataWithChildren("/");
print_r($folderMetadata ["contents"][0]["path"]);
//dowload file (I dont want to download file to the server to open my img)
$f = fopen("test2.txt", "w+b");
$fileMetadata = $dbxClient->getFile("/test.txt", $f);
fclose($f);