AWS Lambda cannot POST json without application/json header in the Request
Summary This incident stemmed from an AWS Lambda function receiving a POST request without a Content-Type: application/json header, causing API Gateway to treat the body as plain text and resulting in a null request body. The Lambda code attempted to deserialize this null body, triggering a Jackson IllegalArgumentException. Root Cause The failure occurred because: API … Read more