由于某种原因,当通过 Swagger 发送请求时,它会顺利完成
但是当我尝试使用 powershell 做同样的事情时,我得到 400
curl -Method Post -Uri "http://localhost:32774/WeatherForecast" -Headers @{ accept = '*/*';"Content-Type" ="application/json" } -Body "test"
我可以做什么来修复它?
尝试
$response = Invoke-RestMethod -Uri "http://localhost:32774/WeatherForecast" -Method POST -Headers @{ accept = '*/*' } -ContentType 'application/json'