I am attempting to download a file, to the Webapp itself on the client side, using the Dropbox Javascript SDK.
I want to make it clear that I only wish to download a file to a folder in the web app; I understand that due to security concerns this may not actually be possible.
I am following the documentation provided in:
http://dropbox.github.io/dropbox-sdk-js/index.html
http://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesDownload__anchor
This is my controller code:
$scope.testDownload = function() {
console.log('Testing Download');
dbx.filesDownload( {path: '/Collorado Springs.jpg'} ) // Just a test file
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(err);
});
};
I can definitely see that a download does take place as it is shown in the Chrome Network tool as shown below:
(I do not have enough reputation to insert multiple links so please interpet this shared "link" I generated)
https:// www.dropbox.com/s/s0gvpi4qq2nw23s/dbxFilesDownload.JPG?dl=0
I believe this is either me lacking knowledge of working with file downloads, or mis-using JavaScript.
Thank you in advance for any help you can provide.