You are sending the text as the content of the file, not file as in binary
Like below will store Hello in S3 file
Storage.put('test.txt', 'Hello')
.then (result => console.log(result))
.catch(err => console.log(err));
Try mentioning contentType, for your case image/png, as in below example for text file
Storage.put('test.txt', 'Private Content', {
level: 'private',
contentType: 'text/plain'
})
Take inspiration from blow URLs:
https://viblo.asia/p/serverless-mobile-application-development-made-with-react-native-and-aws-mobilehub-Az45bnmQ5xY#11-add-source-code-15
https://gist.github.com/zeroFruit/d46d4cae57e5e8cf59e1b541c0bf322e
Code from first URL mentioned above
import Amplify, { API, Storage } from 'aws-amplify-react-native';
import RNFetchBlob from 'react-native-fetch-blob';
import ImagePicker from 'react-native-image-picker';
import { awsmobile } from './aws-exports'; // point path of aws-exports.js
import files from './files'; // point path of files.js
Amplify.configure(awsmobile);
saveImage = () => {
const options = {
title: 'Select Avatar',
storageOptions: {
skipBackup: true,
path: 'images'
}
};
ImagePicker.showImagePicker(options, (response) => {
console.log('Response = ', response);
if (response.didCancel) {
console.log('User cancelled image picker');
}
else if (response.error) {
console.log('ImagePicker Error: ', response.error);
}
else if (response.customButton) {
console.log('User tapped custom button: ', response.customButton);
}
else {
RNFetchBlob
.config({
fileCache: true,
appendExt: 'png',
})
.fetch('GET', response.uri, {
})
.then((res) => {
// upload to storage
files.readFile(res.data)
.then(buffer => Storage.put('image.png', buffer, { level: 'public', contentType: 'image/png' }))
.then(x => console.log('SAVED', x) || x);
});
}
});
}