Uploading file to S3 using Rest Assured multipart
问题 I am trying to do a PUT request to S3 in order to upload a file. Below the Rest Assured code that I have so far, String putURL = "A lengthy URL that is generated dynmaically"; String fileId = "A random 40 digit key generated by our server"; String cKey = "some key given by amazon"; String cMD5 = "some md5 hash value"; Response r = given().contentType("multipart/mixed"). headers("x-amz-header1",cKey, "x-amz-header2",cMD5, "x-amz-header7",accountId, "x-amz-header6",fileId, "x-amz-header5","abc"