duanmie9741 2019-03-22 07:33
浏览 33
已采纳

用GrantRead编写S3对象,得到400

My service uses AWS S3 go sdk to upload an object into aws account say ACT1, I want to grant read permission to a different subaccount ACT2 so that it can read the object upon successful upload. This is how the code looks like

var canonicalIDOfSubAccount = "abcd09kialjf1124"

 // Upload attempts to upload a file at a particular key.
 func (s *client) Upload(ctx context.Context, bucket, key string, body io.Reader) (err error) {
    defer func() {
        if r := recover(); r != nil {
            logging.Error("s3", "panic recovered. err: %v", r)
        }
    }()

    params := &s3manager.UploadInput{
         Bucket: aws.String(bucket),
         Key:    aws.String(key),
         Body:   body,
         GrantRead: aws.String(canonicalIDOfSubAccount),
    }

    // Perform an upload.
    _, err = s.uploader.UploadWithContext(ctx, params)
    if err != nil {
      fmt.Println("Error is ", err.Error(), err)
    }
    return
}

On execution, aws is throwing the error InvalidArgument: Argument format not recognized status 400

Without the GrantRead, the upload works well, but the object is not readable by the ACT2.

On checking with AWS support, they said that providing the canonical id is the right value for the header GrantRead.

  • 写回答

1条回答 默认 最新

  • doukuanghuan7582 2019-03-23 00:58
    关注

    Found out the way to use this properly:

    When providing canonical id, the correct way is:

    params := &s3manager.UploadInput{
         Bucket: aws.String(bucket),
         Key:    aws.String(key),
         Body:   body,
         GrantRead: aws.String("id=" + canonicalIDOfSubAccount),
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来