I am currently working with your javascript sdk to retrieve a list of files from my dropbox using filesListFolder and I display the files as links on my page. I also use the filesDownload method to give my users the ability to download the files.
When a user clicks on a link, the browser's default download window (the one that asks you where you want to save the file) only appears when the file has finished downloading in the background and I then take the blob returned and manually start the download to the user's filesystem afterwards.
My problem is that I would like the default browser's download window to open when the user clicks on the link and not after the download has been completed. Do you think there is a way I could do that?
Thanks for your help!