We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
SrustiThakkar
9 years agoHelpful | Level 6
Sync Dropbox with pc using c#
Hello, I am creating Dropbox Client application using WPF and Windows Service in c#. I want to listen changes done online on Dropbox Website. For that I am using Dropbox .net SDK v2. In that ...
- 9 years ago
The equivalent of API v1's "delta" functionality in API v2 is ListFolder and ListFolderContinue. You can start by calling ListFolder, and then call back to ListFolderContinue to get any more listings as indicated by ListFolderResult.HasMore, or at a later point in the future to get any new entries. (And so on, using the latest cursor from ListFolderContinue each time.)
If your call is failing with "invalid cursor", it means that the value you supplied to ListFolderContinue wasn't recognized as a valid cursor string. You should only supply the exact string returned from ListFolder or ListFolderContinue in ListFolderResult.Cursor.
Greg-DB
Dropbox Community Moderator
9 years agoThe equivalent of API v1's "delta" functionality in API v2 is ListFolder and ListFolderContinue. You can start by calling ListFolder, and then call back to ListFolderContinue to get any more listings as indicated by ListFolderResult.HasMore, or at a later point in the future to get any new entries. (And so on, using the latest cursor from ListFolderContinue each time.)
If your call is failing with "invalid cursor", it means that the value you supplied to ListFolderContinue wasn't recognized as a valid cursor string. You should only supply the exact string returned from ListFolder or ListFolderContinue in ListFolderResult.Cursor.
- SrustiThakkar9 years agoHelpful | Level 6
Thank You for your quick reply.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!