The authorization mechanism you have provided is not supported. Please use AWS4-HMAC-SHA256

前端 未结 20 1573
既然无缘
既然无缘 2020-11-22 14:19

I get an error AWS::S3::Errors::InvalidRequest The authorization mechanism you have provided is not supported. Please use AWS4-HMAC-SHA256. when I try upload fi

20条回答
  •  不知归路
    2020-11-22 15:05

    For thumbor-aws, that used boto config, i needed to put this to the $AWS_CONFIG_FILE

    [default]
    aws_access_key_id = (your ID)
    aws_secret_access_key = (your secret key)
    s3 =
        signature_version = s3
    

    So anything that used boto directly without changes, this may be useful

提交回复
热议问题