You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
Lakshmi
9 years agoNew member | Level 2
How to get metadata for files and folders in Dropbox REST API v2
curl -X GET https://api.dropboxapi.com/1/metadata/auto --header "Authorization: Bearer <access token redacted>"
The above endpoint will be used for get metadata in dropbox v1 API.
How to get...
Greg-DB
Dropbox Staff
In Dropbox API v2, you can get the metadata for an item using /files/get_metadata. You can list the files and folders under a particular path using /files/list_folder and /files/list_folder/continue.
By the way, I redacted it from your post, but for the sake of security, you should disable that access token that you posted. You can do so by revoking access to the app entirely, if the access token is for your account, here:
https://www.dropbox.com/account/security
Or, you can disable just this access token using the API:
v1: https://www.dropbox.com/developers/core/docs#disable-token
v2: https://www.dropbox.com/developers/documentation/http/documentation#auth-token-revoke
mrramos
8 years agoNew member | Level 2
Hi Greg, I have a code in vb.net to access the list of files in the folder in v1, I am using this url "https://api.dropboxapi.com/1/metadata/auto{0}?access_token={1}" I supply the {0} for the folder path and the {1} for my token. do you have an updated uri that I can use to still populate and get the result for v2? Thank you
- Greg-DB8 years agoDropbox Staff
mrramos If you need the file listing under a folder, you should use /files/list_folder and /files/list_folder/continue. API v2 isn't a drop-in recplament for API v1, so you'll need to make code changes. There are curl examples in the documentation for those showing how to call them.
- djomoutresor16 years agoExplorer | Level 3
can have a sample example of code to get metadata in angular 7??
- Greg-DB6 years agoDropbox Staff
djomoutresor1 I don't have a sample to share for Angular in particular. Please refer to the HTTP documentation for whichever method(s) you need, e.g., /files/get_metadata, /files/list_folder, or /files/list_folder/continue, for information on how to call them, including curl examples, so you can write the relevant code for whatever HTTP client you're using.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,910 PostsLatest Activity: 3 days agoIf 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 or Facebook.
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!