Hi!
Google Drive has an method that we can create the file ID first, before start upload.
Does Dropbox has somenthing similar?
My point is, to get file metadata, specially file size, after upload is done via getTemporaryUploadLink.
Knowing the file ID before, I can prevent broken response between the client-side upload and my back-end call.
Now, I am doing:
1 - create upload link with getTemporaryUploadLink (back-end)
2 - upload the file from client-side with the link passed by back-end
3 - when upload is done, send to the back-end the file ID
But I am affraid in step 3, some connections problem and not be able to pass the file ID to my back-end.
Thanks!