We're using Dropbox API for a small integration software. So far, the software was doing good. We thought about testing the system and added e2e test cases for the software. When these tests run daily or more often on the CI, we now facing:
Error: Error while deleting directory.
Directory: 'test-folder'
Status: '429'
Message: 'Request failed with status code 429'
Response: {
"error_summary": "too_many_write_operations/",
"error": {
"reason": {
".tag": "too_many_write_operations"
}
}
}
The problem is legit as we're testing against a real Dropbox server.
Our concern was, can we configure our account to increase the write operation timeouts?
Or is there any mechanism to spin up a testing Dropbox server just for the testing purpose?