Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
xfoxhack
2 years agoNew member | Level 2
unknown tag 'banned_member'
Hello,
I am encountering an issue with the Dropbox Python SDK. While trying to create a shared link with settings, I am receiving "Traceback (most recent call last):
File "C:\Users\Administrator\On...
Здравко
2 years agoLegendary | Level 20
Hi xfoxhack,
Unfortunately, the type of API error you meet, is not yet included in Dropbox Python SDK supported error types for that call. Since there is not any additional error type fields (it's type void), as a workaround, you can catch the type 'ValidationError' and compare the content literally. In such a way you can introduce some support (as a patch) for that error in your application till official support if any.
Additional hack might be to put on top of your source (before any other Dropbox related method execution) on global place something like:
from dropbox import sharing as s
s.CreateSharedLinkWithSettingsError._banned_member = s.bv.Void()
s.CreateSharedLinkWithSettingsError._tagmap['banned_member'
] = s.CreateSharedLinkWithSettingsError._banned_memberGood luck.
About Discuss Dropbox Developer & API
Make connections with 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!