Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Vohry
5 years agoNew member | Level 2
How to download file from picker without node.js?
Hi,
I am wondering about how to download file from Dropbox chooser without node.js.
This is my JS:
options = {
success: function(files) {
// Download
var filena...
Greg-DB
Dropbox Community Moderator
5 years agoWhen using the Dropbox Chooser, it will return the link to each selected file in the "link" field of the returned object for each file.
I see you're using "linkType" of "preview" here. If you just want to download the selected file data, you should use a "linkType" of "direct" instead. That will make the returned "link" a temporary direct link, which you can access directly to get the file data, without using the Dropbox API. That is, you can issue a standard HTTP GET request (either client-side in the browser, or server-side from your server) to retrieve the linked file data.
About Discuss Dropbox Developer & API
Make connections with 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!