0

嗨,我正在 Powershell v4 中运行以下“Invoke-RestMethed”命令,但它引发了 HTTP 406 错误。

Invoke-RestMethod -Method Post -Uri $url -Headers $head -ContentType "application/xml" -Body $body -OutFile output.txt

我对标题进行了以下更改:

$head = @{"Authorization"="Basic $auth"; "Accept"="*/*"}

我的理解是服务器以 xml 格式接受请求,但以 JSON 格式返回,这可能是导致问题的原因吗?我确实尝试将标题更改为"Accept"="application/json"但得到了同样的错误。

完整错误:

Invoke-RestMethod : HTTP 状态 406 - 类型状态报告消息描述 此请求标识的资源仅能够生成具有根据请求“接受”标头不可接受的特征的响应。

4

1 回答 1

0

StackOverflow 中有一个漂亮的功能可以解决这个问题。这是链接:执行请求

这应该可以帮助您:

Function Execute-Request()
{
Param(
  [Parameter(Mandatory=$True)]
  [string]$Url,
  [Parameter(Mandatory=$False)]
  [System.Net.ICredentials]$Credentials,
  [Parameter(Mandatory=$False)]
  [bool]$UseDefaultCredentials = $True,
  [Parameter(Mandatory=$False)]
  [Microsoft.PowerShell.Commands.WebRequestMethod]$Method = [Microsoft.PowerShell.Commands.WebRequestMethod]::Get,
  [Parameter(Mandatory=$False)]
  [Hashtable]$Header,  
  [Parameter(Mandatory=$False)]
  [string]$ContentType  
)

   $client = New-Object System.Net.WebClient
   if($Credentials) {
     $client.Credentials = $Credentials
   }
   elseif($UseDefaultCredentials){
     $client.Credentials = [System.Net.CredentialCache]::DefaultCredentials 
   }
   if($ContentType) {
      $client.Headers.Add("Content-Type", $ContentType)
   }
   if($Header) {
       $Header.Keys | % { $client.Headers.Add($_, $Header.Item($_)) }  
   }     
   $data = $client.DownloadString($Url)
   $client.Dispose()
   return $data 
}

用法:

Execute-Request -Url "https://URL/ticket" -UseDefaultCredentials $true

Execute-Request -Url "https://URL/ticket" -Credentials $credentials -Header @{"Accept" = "application/json"} -ContentType "application/json"
于 2017-01-13T03:36:44.833 回答