Accept x-www-form-urlencoded in Web API .Net Core

后端 未结 4 844
生来不讨喜
生来不讨喜 2020-12-31 02:19

I have a .Net Core Web API that is returning a 415 Unsupported Media Error when I try to post some data to it that includes some json. Here\'s part of what is returned in t

4条回答
  •  灰色年华
    2020-12-31 02:50

    For PlayerPackage, the request should send a PlayerPackage Json Object, based on your description, you could not control the request which is posted from other place.

    For the request, its type is application/x-www-form-urlencoded, it will send data with {"status":"incomplete","score":""} in string Format instead of Json object. If you want to accept {"status":"incomplete","score":""}, I suggest you change the method like below, and then conver the string to Object by Newtonsoft.Json

        [HttpPost]
        [Route("~/api/trackAllInOne/set")]
        [Consumes("application/x-www-form-urlencoded")]
        public IActionResult Post([FromForm] string data)
        {
            PlayerPackage playerPackage = JsonConvert.DeserializeObject(data);
            return Json(data);
        }
    

提交回复
热议问题