We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
tiamat
6 years agoHelpful | Level 6
getting a 409 error and need help
I'm just getting started with the Dropbox API. I want to see a list of all files in my `Camera Uploads` folder (and eventually download them) via the api. I've been following some tutorials and have tried the following:
import { Dropbox } from 'dropbox';
const accessToken = "<my token>";
const dbx = new Dropbox({
accessToken,
fetch,
});
dbx
.filesListFolder({
path: '/Camera Uploads',
})
.then((response) => console.log(response));
but I get the following 409 error:
"path/not_found/."
Can anybody help? I've tried variations on the 'path' property but can't get anything to work.
A 'path/not_found' error indicates that there's nothing at the specified path, in this case, '/Camera Uploads'. There's a few reasons this might be the case:
- If your app has the "app folder" permission, it can only access the contents of the special "app folder" created for it inside the "Apps" folder (by default at /Apps/<app name>). It won't be able to access anything outside that, such as /Camera Uploads. If you need to access the /Camera Uploads folder, you'll need to register and use an app with the "full Dropbox" permission instead.
- The folder you're trying to access may be at a different path.
- You may be connected to a different account that doesn't have that folder.
2 Replies
Replies have been turned off for this discussion
- Greg-DB6 years ago
Dropbox Community Moderator
A 'path/not_found' error indicates that there's nothing at the specified path, in this case, '/Camera Uploads'. There's a few reasons this might be the case:
- If your app has the "app folder" permission, it can only access the contents of the special "app folder" created for it inside the "Apps" folder (by default at /Apps/<app name>). It won't be able to access anything outside that, such as /Camera Uploads. If you need to access the /Camera Uploads folder, you'll need to register and use an app with the "full Dropbox" permission instead.
- The folder you're trying to access may be at a different path.
- You may be connected to a different account that doesn't have that folder.
- tiamat6 years agoHelpful | Level 6
I get it now. When I created my app, I selected the wrong option for granting access to files.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!