我需要使用 power shell 从请求中获取成功和/或错误状态代码。而且我总是得到一个空白状态。
我尝试过使用 Invoke-WebRequest 和 Invoke-RestMethod。我通话成功,但找不到获取状态码的方法。
以下是目前的写法:
$resource = "some url"
$Logfile = "C:/path/log.log"
function LogWrite
{
Param([string]$logstring)
Add-content $logfile -value $logstring
}
Try
{
$Response = Invoke-WebRequest -Method Post -Uri $resource
Write-Output("Success.")
LogWrite $Date
LogWrite SuccessOnCall
LogWrite $Response.StatusCode
}
Catch
{
$ErrorMessage = $_.Exception.Message
Write-Output($ErrorMessage)
$FailedItem = $_.Exception
Write-Output($FailedItem)
LogWrite $Date
LogWrite ErrorOnCall
LogWrite $ErrorMessage
Break
}
我也试过:
LogWrite "StatusCode:" $Response.Exception.Response.StatusCode.value__
我使用了这个问题(和其他链接):Invoke-Restmethod:如何获取返回码?
为了解决这个问题,我的日志确实写了“SuccessOnCall”,但 StatusCode 是空白的。
谢谢你。