【发布时间】:2019-01-15 20:29:01
【问题描述】:
我试图捕获服务器发送给我的 HTTP 请求中包含的 XML,但 HTTP 不包含 Content-Type。 我无权访问服务器,因此无法添加 Content-Type。
如果我尝试将请求正文与 [FromBody] 绑定,则会收到 415 Unsupported Media Type 的错误
[HttpPost("voicebiometricsengine")]
public async Task<IActionResult> VoiceBiometricsEngine([FromBody] XmlDocument analytics)
{
return Ok();
}
如果我尝试将正文作为字符串获取,则字符串为 Null
[HttpPost("voicebiometricsengine")]
public async Task<IActionResult> VoiceBiometricsEngine(string analytics)
{
return Ok();
}
【问题讨论】:
标签: asp.net-core