aws_s3_upload icon indicating copy to clipboard operation
aws_s3_upload copied to clipboard

A simple, convenient package for uploading to S3 in Flutter

Results 21 aws_s3_upload issues
Sort by recently updated
recently updated
newest added

When trying to upload to Linode bucket with the correct access and secret keys, it fails with this error: `CERTIFICATE_VERIFY_FAILED: Hostname mismatch(handshake.cc:393)`

Connection reset by peer However, I want to upload only 14KB zip file.

I use `^3.3.0` version of amazon_cognito_identity_dart_2 I don't want to downgrade\ ``` 0.1.25 ```

URL are different. Refer to : https://github.com/Serdnad/aws_s3_upload/issues/21

The `.s3-website-` and `.s3-website.` parts are fixed in the URL formats used for Amazon S3 website hosting. These are defined by AWS and cannot be changed. So, I want to...

optional for Because, it supports `GET` `HEAD` only... https://docs.aws.amazon.com/AmazonS3/latest/userguide/WebsiteEndpoints.html Refer to: other http request method #19

add http or https option ``` var httpStr = 'http'; if (useSSL) { httpStr += 's'; } final endpoint = '$httpStr://$bucket.s3.$region.amazonaws.com'; ```

@Serdnad @jamesdixon Now you can pass your custom 'domain' to upload the files on the different services. 🏗️ In my case I've to upload files on [Linode.com](https://cloud.linode.com/). 🌎 So I...