[Fixed]-Copy file to s3 from a url and make it public

1👍

You need to pass ACL='public-read' in copy_from method.

s3_resource.Object(settings.AWS_BUCKET_CALL_RECORDINGS,filename) \
    .copy_from(CopySource=source_audio_url, ACL='public-read')

Leave a comment