A jpeg image uploaded from an iPhone to S3 is not readable. But works on photoshop
I'm trying to upload a jpeg image from an iOS device to S3 using a presigned url. Here's what I'm doing: const file = { uri: imageURL, type: 'image/jpeg' }; const formData = new FormData(); formData.append('photo', file); formData.append('Content-Type', 'image/jpeg'); const…