在调用invoke-webrequest提交多部分表单时,如何强制内容类型为application / json?
$headers = @{
'Content-Type' = "application/json"
'APIKey' = $apikey
}
$form = @{ batch = Get-ChildItem ./DB1TestFile.json }
Invoke-WebRequest -Uri $url -Method Post -Headers $headers -Form $form
使用-Form替换标题中设置的内容类型...