I'm using "https://api.dropbox.com/1/metadata/dropbox" to get the list of images. In the response the path i'm getting is like "/1.jpg"..
I want to display the image , how to get the full displayable url through dropbox api
Thanks in advance
If you want to get a direct link to the file, you can use /media:
https://www.dropbox.com/developers-v1/core/docs#media
Also, please note that you're using API v1, which is deprecated. You should migrate to API v2 when possible. The equivalent endpoint on API v2 is /files/get_temporary_link:
https://www.dropbox.com/developers/documentation/http/documentation#files-get_temporary_link
I'll migrate. Thankyou for the response Gregory.. .
A small question is there anyway to get the the albums separately and the files that are not in albums separately. I'm reading the docs but couldnt able to follow them .
In v2 I couldnot able to find the api to get the list of all images or files.. in v1 I'm using https://api.dropbox.com/1/metadata/dropbox to get the total list of files..Is there any alternative to this in v2.
Thanks