You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
Ismaelw
5 years agoNew member | Level 2
Dropbox API v2 - Empty file on upload
Hi there
I use the dropbox v2 api to upload a file using laravel and guzzle.
However the file in dropbox shows empty. Those files have a sie of 0 bytes.
It have to do with my post call to the API because the file contents are still there before calling the upload call.
$client = new Client; $response = $client->post("https://content.dropboxapi.com/2/files/upload", [ 'headers' => [ 'Authorization' => 'Bearer '.$this->getAccessToken(), 'Dropbox-API-Arg' => json_encode([ 'path' => $path, 'mode' => 'add', 'autorename' => true, 'mute' => true, 'strict_conflict' => false ]), 'Content-Type' => 'application/octet-stream', 'data-binary' => "@$file" ] ]); return json_decode($response->getBody()->getContents(), true);
UPDATE
After some testing I made it work with using
'body' => fopen($file, "r")
instead of
'data-binary' => "@$file"
as described in the dropbox api v2 documentation.
Is there a better solution to this?
[Cross-linking for reference: https://stackoverflow.com/questions/59904691/laravel-dropbox-api-v2-empty-file-on-upload ]
The Dropbox API /2/files/upload endpoint is a "content-upload" style endpoint, meaning that it expects the file data for the upload in the HTTPS request body. Exactly how you set the file data in the request body will depend on what HTTPS client you're using. The example included with the documentation is written for curl on the command line, which uses curl's "data-binary" parameter to set the request body.
Other HTTPS clients, such as Guzzle in your case, may use different option names. It sounds like you've already figured out the equivalent for Guzzle and got this working. I can't speak to whether or not there's a better option or method in Guzzle though, as that's made by a third party.
- Greg-DBDropbox Staff
[Cross-linking for reference: https://stackoverflow.com/questions/59904691/laravel-dropbox-api-v2-empty-file-on-upload ]
The Dropbox API /2/files/upload endpoint is a "content-upload" style endpoint, meaning that it expects the file data for the upload in the HTTPS request body. Exactly how you set the file data in the request body will depend on what HTTPS client you're using. The example included with the documentation is written for curl on the command line, which uses curl's "data-binary" parameter to set the request body.
Other HTTPS clients, such as Guzzle in your case, may use different option names. It sounds like you've already figured out the equivalent for Guzzle and got this working. I can't speak to whether or not there's a better option or method in Guzzle though, as that's made by a third party.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,915 PostsLatest Activity: 5 hours agoIf 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 or Facebook.
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!