Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
Gegham J.
8 years agoNew member | Level 2
Dropbox Webhook for Business
Just install dropbox-psd-python (https://github.com/dropbox/dropbox-sdk-python). Business App integration process was ok. When I add file to my Dropbox Business
{
u'list_folder': {
u'teams': {
u'dbtid:AAB***': [
u'dbmid:AAA******',
u'dbmid:AAC******' ] } },
u'delta': {
u'teams': {
u'dbtid:AAB***': [
u'dbmid:AAA******',
u'dbmid:AAC******' ] } } }
Now I want to call delta to get what exactly change with my dropbox, as I did it before
client = dropbox.dropbox.DropboxTeam(token)
client.delta(cursor)
But there is not delta function call in last version? And I could not find anything substitute of delta How can I do it?
Thanks.
1 Reply
- Greg-DB8 years ago
Dropbox Community Moderator
[Cross-linking for reference: https://stackoverflow.com/questions/45880174/dropbox-webhook-for-business ]
The 'delta' method was for API v1, which is deprecated and being retired soon. The API v1 functionality was recently removed entirely from the Python SDK.
The equivalent functionality for API v2 that you should use instead is files_list_folder and files_list_folder_continue.
About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
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!