Got this error when the request is encoded as multipart/form-data.
{
"code": 400,
"text": "Bad request",
"errorMessage": "Unsupported content-type: multipart/form-data",
"status": 0
}
In one of the calls, I need to send binary data & hence need the form-data encoding. Is this on the roadmap? For now can I use request.raw.req to still process the incoming data and make the upload work?
Got this error when the request is encoded as
multipart/form-data.In one of the calls, I need to send binary data & hence need the form-data encoding. Is this on the roadmap? For now can I use
request.raw.reqto still process the incoming data and make the upload work?