Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
Please explain dropbox v2 uoload API in detail.
I did not understand it in v1 is was explained neatly.
If i want to upload one audio file using dropbox v2 upload api then what should be value in path and input paramter ?
input should be what ? file or filename or filedata or fileurl ?
You can find the full documentation for all of the upload methods in the SwiftyDropbox SDK here:
If you click on a method name, it will expand to show the documentation for that method, including the full method definition with parameter types and descriptions, as well as the result type.
There's an example of making an upload call in the readme here:
https://github.com/dropbox/SwiftyDropbox#upload-style-request
So, for instance, in that example, to upload an audio file like you describe, you would supply the desired path for the uploaded file in the 'path' parameter, and supply the data for the file in the 'input' parameter.
That example shows supplying the data as a Data object, but you can also supply a URL object or an InputStream object.
You can find the full documentation for all of the upload methods in the SwiftyDropbox SDK here:
If you click on a method name, it will expand to show the documentation for that method, including the full method definition with parameter types and descriptions, as well as the result type.
There's an example of making an upload call in the readme here:
https://github.com/dropbox/SwiftyDropbox#upload-style-request
So, for instance, in that example, to upload an audio file like you describe, you would supply the desired path for the uploaded file in the 'path' parameter, and supply the data for the file in the 'input' parameter.
That example shows supplying the data as a Data object, but you can also supply a URL object or an InputStream object.
I'm getting this same "an audio error occurred" when uploading .wav files, but with the javascript sdk. I can't seem to find any documentation or examples on how this data is supposed to be passed (in what format) to the function.
I'm using filesUpload as per:
var dbx = new Dropbox({ accessToken: 'token' });
dbx.filesUpload({path: filePath, contents: req.body.file, mode: 'overwrite'})
.then(function(response) {
res.sendStatus(200);
console.log("audio saved!");
})
.catch(function(error) {
console.error(error);
response.sendStatus(400);
});
The examples just show a "file" from a file input and passing that directly to the contents: param, but that doesn't work either.
How is the data supposed to be passed for the contents param in filesUpload?
@jdwileymon I don't believe this thread is relevant to the problem you're seeing. This thread was about using the Swift SDK, but you're using the JavaScript SDK, and it also doesn't mention the "an audio error occurred" error you cited.
I'll follow up on your thread for this issue:
Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on Twitter 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!