aws-samples / aws-sdk-unity-samples

This repository has samples that demonstrate various aspects of the AWS Mobile SDK for Unity, you can get the SDK source on Github (https://github.com/aws/aws-sdk-net)
Other
161 stars 107 forks source link

Fix couldn't post to S3 bucket which is not located at us-east-1. #18

Closed neguse closed 8 years ago

neguse commented 8 years ago

Amazon.S3.Model.PostObjectRequest has Region member which is initialized as us-east-1. https://github.com/aws/aws-sdk-unity/blob/master/Assets/AWSSDK/src/Services/S3/Custom/Model/_unity/PostObjectRequest.cs#L47

Region is used to make S3 bucket URL. https://github.com/aws/aws-sdk-unity/blob/master/Assets/AWSSDK/src/Services/S3/Custom/_unity/AmazonS3Client.unity.cs#L105-L113

So, it is necessary to set Region as bucket's region.