My (Java) app. needs to know how a Dropbox filesystem (or part of it) changes and also has changed while she's not running.
The listFolderLongpoll API seems to be well suited for this purpose and my first tests are promissing.
First question: how long will a cursor be valid ?, for a few hours? , days ?, more ?
But there is one problem, with file renaming; it's seen by the app. as the pair (deleted, new) and, unless my test code is buggy, I don't see any way to "reconstruct" the rename infos. , especially in case of several renames (I didn't test yet the "move" which also must work..).
Second question: what are the alternative to long term poll? , knowing that solutions based on "webhooks like" techniques are not an option.