Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Sam80
3 years agoHelpful | Level 5
429 rate limit errors without "error" tag
According to the API docs, rate limiting errors (429) will have the following format:
The Content-Type of the response can be JSON or plaintext. If it is JSON, it will be type RateLimitError.
I've recently seen an increasing number of reports from users of my app, using the Dropbox Python SDK, where 429 errors with content-type 'application/json' don't conform to the expected JSON structure. In particular, they don't contain an "error" tag, leading to exceptions when the SDK tries to deserialise them as RateLimitError in https://github.com/dropbox/dropbox-sdk-python/blob/487793dff3c5a8a3a76010799dc4803cabdb70f3/dropbox/dropbox_client.py#L644-L649:
err = None
if res.headers.get('content-type') == 'application/json':
err = stone_serializers.json_compat_obj_decode(
> RateLimitError_validator, res.json()['error'])
E KeyError: 'error'
Has anything changed in the expected body of error responses?
3 Replies
Replies have been turned off for this discussion
- Greg-DB3 years ago
Dropbox Community Moderator
Thanks for the report! We'll look into it.
- Greg-DB3 years ago
Dropbox Community Moderator
The team has pushed out a change that should fix this. Please let us know if you're still seeing any instances of this now. Thanks!
- Sam S.63 years agoExplorer | Level 4
Thank you for the quick fix!
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!