Hi Team,
I have 2 questions.
1. What is the auth code time limit or validity like 2min or mins. can anyone tell.
2. What is the rate limit of API. (API limits). I am using API for mainy user creation/updation/deletion operations.
Thanks.
1. The authorization code expiration window isn't documented, as the code is meant to be used immediately after the app authorization. (I believe it is a few minutes though.)
2. The Dropbox API does have a rate limiting system, but we don't have any specific numbers documented. It is only designed to prevent abuse though, and is accordingly very generous. Further, the limits operate on a per-user basis. That being the case, you generally don't need to worry about hitting it in normal use. Also note that not all 429s and 503s indicate rate limiting, but in any case that you get a 429 or 503 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.