we have one functionality where we need to create an s3 bucket signed URL for the client. the client will upload a video on that URL.
we are using Boto version 2.38.0 for generating signed URL.
conn = boto.connect_s3()
key = "test_key"
bucket = "test_bucket"
signed_url = conn.generate_url(
expires_in=600,
method="PUT",
bucket=bucket,
key=key,
headers={'Content-Type': 'application/octet-stream'}
)
I can upload the file with binary, but I can not upload the file with form-data. I have also tried multipart/form-data for the same. So, Could you please suggest me some request with signed URL video upload using POSTMAN?
Any help would be highly appreciated.
Thanks.