Hi All,
Is anyone Implemented Uploading an Image to Amazon web service s3 using Ionic 2/3 with Angular 2/4
I have tried this much but it’s not working
public takePicture(sourceType) {
// Create options for the Camera Dialog
console.log("takePicture ");
const options = {
quality: 100,
destinationType: this.camera.DestinationType.FILE_URI,
sourceType: this.camera.PictureSourceType.CAMERA,
encodingType: this.camera.EncodingType.JPEG,
targetWidth: 1000,
targetHeight: 1000,
saveToPhotoAlbum: false,
correctOrientation: true
};
// Get the data of an image
this.camera.getPicture(options).then((uri) => {
const fileTransfer: TransferObject = this.transfer.create();
var s3URI = encodeURI("https://mybucketname.s3.amazonaws.com/"),
policyBase64 = "MY_BASE64_ENCODED_POLICY_FILE",
signature = "MY_BASE64_ENCODED_SIGNATURE",
awsKey = 'xxxxxxxxxxxxx',
acl = "public-read";
let options = {
fileKey: 'file',
fileName: uri.substr(uri.lastIndexOf('/') + 1),
chunkedMode: false,
mimeType: "image/jpeg",
headers: {
Connection: "close"
},
params: {
metadata: { foo: 'bar' },
token: 'xxxxxxxxxxxxxxxxxxxx' //super_secret_token
}
};
this.loading.present().then(() => {
alert(options.fileName);
let s3UploadUri = 'https://s3-us-west-1.amazonaws.com/mybucketname';
fileTransfer.upload(uri, s3UploadUri, options).then((data) => {
let message;
let response = JSON.parse(data.response);
if (response['status']) {
message = 'Picture uploaded to S3: ' + response['key']
} else {
message = 'Error Uploading to S3: ' + response['error']
}
this.loading.dismiss();
let toast = this.toastCtrl.create({
message: message,
duration: 3000
});
toast.present();
}, (err) => {
this.loading.dismiss();
let toast = this.toastCtrl.create({
message: "Error",
duration: 3000
});
toast.present();
});
});
});
}
Please help me to solve, searched max websites still unable to modify the code
forum ionicframework
github
stackoverflow
Ionicframewok forum another
I have accesskey, secrete key and bucket name please tell me how modify above code
Max people looking for answer