We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
gagsbh
6 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
- Greg-DB6 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 & 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!