I want to upload multiple files from browser with axios into s3 bucket. I am using aws-sdk-php library in laravel. My intention is when I want to upload one or multiple files,
GET request to backend(laravel) for a presigned URL.PUT/POST request to that URL with all the files.I have read the aws-sdk-php docs and found some problems with my intention.
Object Key when I want to generate a presigned URL. In the docs and other articles they are using file_name as Key. But for my purpose I cannot send multiple file_names since it doesn't make sense.Can anyone help me with these problem?