在默认情况下,如何在不安装任何插件的情况下请求Windows 10
?
curl -X POST http://you-url.com/api/search
发布于 2022-04-05 11:02:52
我们可以使用PowerShell
$Uri = 'http://you-url.com/api/search'
$Fields = @{
properties='{"color": "red"}'
maxitems='30'
skipcount='0'
location='country'
userName='testing'
password='testing'
}
Invoke-RestMethod -Uri $Uri -Method Post -Body $Fields | ConvertTo-Json -Depth 10;
https://stackoverflow.com/questions/71750636
复制相似问题