-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
Description
When the request is created, the body have to be set with the data of the event.
Cases:
- If the body is an "application/x-www-form-urlencoded" form: parse the params as an object and also add the object to the "params" attribute.
- If the body is a "multipart/form-data" form: parse the params as an object and also add the object to the "params" attribute. Skip the incoming files handling for now.
- If the body is a "application/json": parse the input as an object.
- Otherwise: set the body as plain text.