To piggyback on my previous question here:
How do I block uploads that lack "DateTimeOriginal" exif data with Fine Uploader?
Once I've got the exif data, I'd like to pass it on to my server within the uploadSuccess AJAX call.
I'm aware of being able to add params, but what I don't see in the docs is some way to do something like:
uploadSuccess: {
params: function(id) {
var params = {
DateTimeOriginal: timestamps[id]
}
return params;
}
}
Is there an equivalent way to handle this?
Upon deeper documentation digging, I found this method:
Which does the trick.
http://docs.fineuploader.com/api/methods-s3.html#setUploadSuccessParams