There is this known issue in S3 that if the system for whatever reason has its clock not synched, the upload fails with RequestTimeTooSkewed error.
There are many solutions to when this is triggered by a server (basically fixing the server clock) but what can I do when this is triggered by the browser of my app users?
Even setting correctClockSkew to true doesn't fix it.
AWS.config.update({
correctClockSkew: true,
...
});