Hello,
Actually I'm building an app that needs notifications when a file is created, modified or deleted. I have a webhook configured correctly.
I just need notifications about these files, not the entire dropbox.
I've tryed with /files/list_folder but it gives information of all files on a certain path and I don't want this behaviour.
I've seen get_lastest_cursor that gives information of only changes comparing the anterior cursor with the new cursor. I don't know how to use that, because on my java application I don't have this method avaiable:
DbxClientV2 dropboxClient = new DbxClientV2(config,<api_key>);
result = dropboxClient.files().get_latest_cursor()??;
Is there any example of this? Is that what I need for receive the latest changes on dropbox?
Thanks.