I may be doing this incorrectly, but here goes.
First, I uploaded and/or deleted something from the dropbox account (waited a few minutes).
Then I ran https://api.dropboxapi.com/2/files/list_folder/get_latest_cursor passing the all the correct values.
get_latest_cursor returned a cursor value (so far so good).
Next I called https://api.dropboxapi.com/2/files/list_folder/continue and passed it the cursor returned from the get_latest_cursor call.
Expectation: I expected to see a list of the two changes I had made to the account. (1 file added, 1 file deleted).
Actual:
{
"entries": [],
"cursor": "AAF1LwpAGlqDHXIOc2QYsiF5HF4FlfDx-Pq-zv4eDRF9kak1OFvtAjkW_F5UwmiUJ4AYJ_b91Eu9j-fi17d5Xw4l43AWjmzB0HEzL4w22zifpDxHHC2gVFRraLo0o2pCXKcFTMI-p72l4RSekoaTiKqgxSYlxeVcgD7Vsnaf5OHV0PKAJOuorFpnbQx5bbBix7Y",
"has_more": false
}
Any thoughts? I also checked this cursor and just got the same result with a new cursor value.
These are the settings sent to get_latest_cursor:
{
"include_deleted": true,
"include_has_explicit_shared_members": false,
"include_media_info": false,
"path": "",
"recursive": true
}