Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
ws
9 years agoNew member | Level 2
Upload Image with Dropbox API
Hi,
When Iam uploadinh the image using the curl code.The response is 200 ok,but when iam viewing the image in the dropbox .It says unable to preview this type of images.My code is:
$fields ='@'.'test.jpg';
$headers = array("Authorization: Bearer ".$token,'Content-Type: application/octet-stream', 'Dropbox-API-Arg: {"path":"/arun/teshhhhht.jpeg","autorename": true,"mute": false,"mode":"add"}');
$ch = curl_init('https://content.dropboxapi.com/2/files/upload');
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS,$fields);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);;
$rest1=json_decode($response,true);
echo "<pre>";
print_r($response);
1 Reply
- Greg-DB9 years ago
Dropbox Community Moderator
It looks like you're uploading the file data as the string "@test.jpg" as opposed to the contents of the file at test.jpg. (According to the documentation for CURLOPT_POSTFIELDS that usage for accessing file contents is deprecated, and only works when supplying the full path.)
The resulting uploaded file then won't be the expected image data, so the thumbnail call won't work.
There's an example of uploading a file using curl in PHP here:
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!