提交多部分表单时如何覆盖内容类型

时间:2019-04-08 19:36:32

标签: powershell-core invoke-webrequest

在调用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替换标题中设置的内容类型...

0 个答案:

没有答案