Hi!
My app calls /2/files/save_url then follows up the async upload with /2/files/save_url/check_job_status.
When dropbox responds with in_progress in .tag, it calls check_job_status later again.
When dropbox responds with complete, it stops.
When dropbox responds with failed, it starts from beginning calling save_url again, then checks job status (with the new job_id).
Sometimes it gets a failed response with error message: not_found, so it starts uploading again. However in the end there are many files in my dropbox folder:
fileName, fileName(1), fileName(2) ...
Q: Could there be an eventual inconsistency when check_job_status is called? Can I ever get a failed response when it should actually be in_progress?
I will try to call check_job_status with some delay to see if it solves the problem.
Thanks,
Győző