通过 Powershell curl 发送帖子

问题描述 投票:0回答:1

由于某种原因,当通过 Swagger 发送请求时,它会顺利完成 enter image description here

但是当我尝试使用 powershell 做同样的事情时,我得到 400

curl -Method Post -Uri "http://localhost:32774/WeatherForecast" -Headers @{ accept = '*/*';"Content-Type" ="application/json" } -Body "test"

enter image description here

我可以做什么来修复它?

c# json powershell rest endpoint
1个回答
0
投票

尝试

$response = Invoke-RestMethod -Uri "http://localhost:32774/WeatherForecast" -Method POST -Headers @{ accept = '*/*' } -ContentType 'application/json'
© www.soinside.com 2019 - 2024. All rights reserved.