0

In Dropbox API v1 I'm using "/1/metadata/dropbox" to get the total list of files.

In v2 I could not able to find the API to get the list of all images or files.

Can anyone please suggest me on how to get all the images/albums in API v2.

I'm working on https:// requests

Thanks

1 Answer 1

0

In Dropbox API v2, the equivalent functionality of API v1 /metadata can be found in /files/get_metadata and /files/list_folder[/continue].

You can use /files/get_metadata to get information about any particular file or folder (except root itself.) You can use /files/list_folder[/continue] to get the listing of the contents of any folder.

It sounds like /files/list_folder[/continue] is what you're looking for in order to list the image files in a folder.

2
  • Actually I'm trying to display the list of all images of a user that are available in dropbox. For this i'm now doing /files/list_folder to get all the files and then /files/get_temporary_link to get the links of each files. But the process is becoming so slow that i have to call the /files/get_temporary_link API for each image available. Is there any way to get all the temporary link of the images at once. Commented Aug 8, 2016 at 7:49
  • [Cross-linking for reference: dropboxforum.com/hc/en-us/community/posts/… ]
    – Greg
    Commented Aug 8, 2016 at 17:23

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.