415 Unsupported Media Type asp.net core
In Postman, when creating a POST request, the default is "Text". Change it to JSON.
Try using [FromForm]
instead of [FromBody]
for the method parameter if you're POSTing form data.
In Postman, when creating a POST request, the default is "Text". Change it to JSON.
Try using [FromForm]
instead of [FromBody]
for the method parameter if you're POSTing form data.