For example if I have 5 files in folder /images, how list all the shared links? And I dont want to share the folder.
/images
1.jpg
2.jpg
...
5.jpg
I tried https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_shared_links
curl -X POST https://api.dropboxapi.com/2/sharing/list_shared_links \
--header "Authorization: Bearer xxxx \
--header "Content-Type: application/json" \
--data "{ \"path\": \"/images\"}"
It cannot list all the shared links, it returns:
{"links": [], "has_more": false}
Thanks!