不支持的协议方案""在Golang中使用AWS S3和goamz

时间:2017-01-02 23:15:47

标签: http amazon-web-services go amazon-s3 goamz

尝试使用Go(lang)中的goamz / s3包将文件字节上传到S3 AWS。

我的代码是:

var (
    awsAuth aws.Auth
    region aws.Region
    connection s3.S3
    bucket *s3.Bucket
)
func init() {

    // Set up the AWS S3 Connection config.
    awsAuth = aws.Auth{
        AccessKey: os.Getenv("ACCESS_KEY"), // change this to yours
        SecretKey: os.Getenv("SECRET_KEY"),
    }
    fmt.Println("AWS: ", awsAuth)
    region := aws.EUWest    
    connection := s3.New(awsAuth, region)

    bucket = connection.Bucket(os.Getenv("S3_BUCKET")) // change this your bucket name
}
func uploadToS3(filename string, byteArray *[]byte) error {

    var err error
    //should check if file already uploaded, encrypted by this password
    fmt.Printf("[uploadToS3] starting upload of %s\n", filename)

    err = bucket.Put(filename, *byteArray, "text/plain; charset=utf-8", s3.PublicRead)
    if err != nil {
        fmt.Printf("[uploadToS3] error uploading: %s\n", err)
        return err
    } else {
        fmt.Printf("[uploadToS3] done uploading %s\n", filename)    
        return nil
    }

    return nil // redundancy
}

我收到错误

[uploadToS3] error uploading: Put /filename: unsupported protocol scheme ""

从这里阅读:unsupported protocol scheme while creating ec2 Security group它认为它是因为该区域不正确,但是你可以看到我在init()函数中设置它,所以我不知道它还能是什么

非常感谢任何想法

1 个答案:

答案 0 :(得分:1)

对任何可能遇到同样问题的人。如果未设置存储桶名称,则会出现错误。看起来很愚蠢,但是我在Docker里面运行这个,并且忘了告诉docker什么环境变量是持有桶名称的。因此当我在终端上echo $S3_BUCKET时,我得到了桶名,因此认为一切都很好。但是我没有在docker容器内测试它。骗我。