I've been working on an application to copy some files up to a box location. The files are all relatively small, probably on average around 1mb each. There's maybe 2,000 files. I've been getting inconsistent results when I do a bulk upload where at some point the API just stops responding it seems.
This is done in PHP. When there's an error of unexpected results, I have it dump everything out, and what's weird is that there's no response from the server. As part of this process, I'm creating folders and uploading files.
At first I thought maybe I was hitting a rate limit, but looking around, it seems like those are well, undefined, but still, pretty liberal. I also would expect some kind of return message.
Then I thought maybe it was my session expiring, but I have a script that'll check and when the session is within 20 minutes of expiring, it'll refresh the session, so I'm able to rule that out.
Is there something else I should be looking for? What might cause the response to be blank?