Since two days ago i'm getting a problem with listing files of the folder /folder_a. I execute the code but i dont get response or error.
The code works fine when:
- if i try a different folder
- if i have less than 80 files in /folder_a
- if i pass a limit like limit: 50
var dbx = new Dropbox({ accessToken: 'TOKEN' });
dbx.filesListFolder({path: '/folder_a'})
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
Am i doing something wrong ?