Can't get files via uplink-nodejs

I try to use uplink-nodejs for files access.
I uploaded files trough web brouser
I can get list of buckets but list of files in bucket is empty, where I could did mistake?

let access = await libUplink.parseAccess(“…”);
sj.project = await access.openProject();
let buckets = await sj.project.listBuckets(null,null);
let list = await sj.project.listObjects(“bucketname”, null);

Hi @Ivan54
The most likely reason is a mismatch between the phrase used to upload the files in the browser and the corresponding access grant to read the bucket content.

2 Likes