1👍
You could hash the files on the mobile device and send the hash with the POST request. You would then handle multiple uploads on the server side.
Another solution would be to make you mobile hit a url with GET to check what are the 5 latest files it has uploaded (hash only) before each upload, so you can spare further useless uploads for the mobile device.
Source:stackexchange.com