Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
gagsbh
5 years agoHelpful | Level 5
Too Many Requests Error
Hello Greg,
I am using the following Dropbox Team API - ListFolderContinueAsync in our production Dropbox application.
result = await clientadmin.Files.ListFolderContinueAsync(model.basechangetoken);
However, this is giving error:
too_many_requests/...
at Dropbox.Api.DropboxRequestHandler.<RequestJsonString>d__17.MoveNext()
Can you please help me know how to resolve this issue.
Thanks,
Gagan
1 Reply
Replies have been turned off for this discussion
- Greg-DB5 years ago
Dropbox Community Moderator
The Dropbox API does have a rate limiting system that can result in errors like this. In any case that you get one of these the best practice is to retry the request, respecting the Retry-After header if given in the response, or using an exponential back-off, if not. Make sure you're not submitting a large number of requests per user, or multiple identical requests at the same time.
You can find more information about the errors that the API returns here. In the .NET SDK in particular, you can get the Retry-After value from RateLimitException.RetryAfter.
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!