You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var dbx = new Dropbox({accessToken: 'sl.BDFmXn2QZ8RDvrTvRKoOXyMyeEV7XSkCJH8W6YPGh3HAdP-GI-eVAvssgBLWwDuTG4TCjqdKMBMK6YeUC315ms2svoHPNp46hVqy6vyu0Is1p8gV-VL2GNpkVJ1llEDKxQCAzOE'});
dbx.filesDownload({path: '/test.txt'})
.then(function (response) {
var blob = response.fileBlob;
var reader = new FileReader();
reader.addEventListener("loadend", function() {
console.log(reader.result); // will print out file content
});
reader.readAsText(blob);
})
.catch(function (error) {
//something
})
let data = readTextFile("https://www.dropbox.com/s/nzrwxhj7qkrsimb/data.csv?dl=0");