Parse multipart/form-data Body on AWS Lambda in Java
问题 I am new to AWS Lambda and I am trying to implement a Lambda function that receives a POST request containing data encoded as multipart/form-data. The message is received through the API Gateway using Lambda Proxy integration and the body is encoded in Base64 when it arrives to the Lambda function. After decoding it manually, I see it contains a multipart body like the following: -----WebKitFormBoundary3EZ0C3tbP2JpAmz4 Content-Disposition: form-data; name="param1" value1 ----