hi there,
I am having trouble getting a list of folders from my dropbox, the following is the main piece of code i use to get a connect/data. So far just getting metadata and not the folders or anyt data that I need. This is being implemented in NodeJS.
let dropb = Dropbox.authenticate({ token: '******' });
let variable = dropb({
resource: 'files/list_folder',
parameters: {
'account_id': 'dbid:*****',
'path': '',
}
});
//somewhere after console.log(data) //which displays the above code's data in console
Thanks!