早些时候我使用的是“launchpad.net/goamz/s3” ,但对于我的新项目,我使用的是“github.com/goamz/goamz/s3”。 并且桶的 put 方法发生了变化,现在它多了一个参数“选项”
region := aws.USEast2
connection := s3.New(AWSAuth, region)
bucket := connection.Bucket("XXXXX") // change this your bucket name
path := "mypath" // this is the target file and location in S3
//Save image to s3
err = bucket.Put(path,user_content,content_type, s3.ACL("public-read"), options)
以上是我的代码。你能帮助我在期权中的预期是什么以及我如何获得它的价值吗?