How to upload a file to amazon S3 super easy using c#

前端 未结 5 938
长发绾君心
长发绾君心 2020-12-07 12:44

I am tired of all these \"upload to S3\" examples and tutorials that don\'t work , can someone just show me an example that simply works and is super easy?

5条回答
  •  借酒劲吻你
    2020-12-07 13:17

    The example on the AWS site worked for me: https://docs.aws.amazon.com/AmazonS3/latest/dev/HLuploadFileDotNet.html

    Although it was set to a different region which returned an error:

    //private static readonly RegionEndpoint bucketRegion = RegionEndpoint.USWest2; private static readonly RegionEndpoint bucketRegion = RegionEndpoint.USWest1;

    I set up my bucket with Northern California, which is USWest1.

提交回复
热议问题