I'm working on a dotnet core WebAPI 2.1 and I can't find a way of sending to into the Body an image.
The controller looks like this:
[HttpPost("api/image")]
public IActionResult Post([FromBody]IFormFile file)
{
var filePath = Path.GetTempFileName();
if (file.Length > 0)
{
return Ok();
}
return BadRequest();
}
This call is never finishing as the Kestrel
is failing
I've already tried to use Consumes
[Consumes("application/json", "application/json-patch+json", "multipart/from-data")]
Also in postman, I have set Content-Type to multipart/form-data