How to use form fields in the same order for Amazon S3 upload file using presigned url
问题 I have a postdata presigned URL of Amazon S3. I want to use it in a Karate feature file to upload a file (say: pdf) Here is a sample Curl request that I need to perform Using Karate POST request curl --location --request POST '<s3bucketURL>' \ --form 'key=some_key_fileName' \ --form 'x-amz-meta-payload={JsonObject}' \ --form 'Content-Type=application/pdf' \ --form 'bucket=<BucketName>' \ --form 'X-Amz-Algorithm=AWS4-HMAC-SHA256' \ --form 'X-Amz-Credential=<AWS_Credential>' \ --form 'X-Amz