I am sending a request using this endpoint:
https://api.dropboxapi.com/2/files/list_folder
And sending this data:
{ "path": "/Otter+Moon", "include_media_info": true, "include_has_explicit_shared_members": false, "include_mounted_folders": true }
However, the media info is not being returned. This means that I have to send individual
https://api.dropboxapi.com/2/files/get_metadata
{ "path": "/Otter+Moon/EmmaWolf_OtterandMoon-1.jpg", "include_media_info": true } for each file in that directory.
Why? Why is the media info not being returned on the initial request?