Hi,
I'm using the Java Core SDK version 3.1.3
We have a mechanism of long polling for the changes in the User's Account.
Our Application doesn't have any of the scopes for teams .
For a regular user (Non Team) we're able to get the "events" for a shared folder if the user chooses to "Add to Dropbox"
But we're not getting the shared files using the cursor to get the changes using the following API
files().listFolderContinue(cursor);
The files don't have an option to "Add to Dropbox" (atleast at the receiver's end) .
So how do we go about knowing if a file has been shared to an account ?
Continuously comparing all shared files using
sharing().listReceivedFiles()
isn't a good idea since our users have thousands of files.
Using the Business APIs is a different beast but if someone can tell me how to use the Long Poll method / webhook for shared files that would be great .