I'm trying to pull in a list of all files from dropbox - I have a folder with ~ 500 files in it.
However, if I call list_folder, e.g.:
curl -X POST https://api.dropboxapi.com/2/files/list_folder \
--header "Authorization: Bearer REDACTED" \
--header "Content-Type: application/json" \
--data "{\"path\": \"/Tuckers\",\"recursive\": true,\"include_media_info\": false,\"include_deleted\": false,\"include_has_explicit_shared_members\": false,\"include_mounted_folders\": true,\"include_non_downloadable_files\": true}" &> whee.txt
and then list the files:
grep -o path_lower whee.txt | wc
230 230 2530
I only get back a subset of the number of files. The response has_more is false, so I don't quite understand why all the files aren't being returned.