我需要针对此问题的boto3更新, 使用python和boto将s3中的文件公开
s3.Bucket('gentle-persuader-emoji').put_object(Key=emoji_png_file, Body=image)
response = s3.object(emoji_png_file).put_object_acl('ACL=public-read')
Run Code Online (Sandbox Code Playgroud)
给出错误
AttributeError: 's3.ServiceResource' object has no attribute 'object'
Run Code Online (Sandbox Code Playgroud)