Powershell v3'ün Invoke-WebRequest ve Invoke-RestMethod'u kullanarak bir https web sitesine bir json dosyası göndermek için POST yöntemini başarıyla kullandım.
Kullandığım komut
$cert=New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("cert.crt")
Invoke-WebRequest -Uri https://IPADDRESS/resource -Credential $cred -certificate $cert -Body $json -ContentType application/json -Method POST
Ancak GET yöntemini şu şekilde kullanmaya çalıştığımda:
Invoke-WebRequest -Uri https://IPADDRESS/resource -Credential $cred -certificate $cert -Method GET
Aşağıdaki hata döndürülür
Invoke-RestMethod : The underlying connection was closed: An unexpected error occurred on a send.
At line:8 char:11
+ $output = Invoke-RestMethod -Uri https://IPADDRESS/resource -Credential $cred
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-RestMethod], WebException
+ FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeRestMethodCommand
SSL sertifikasını yok saymak için aşağıdaki kodu kullanmaya çalıştım, ancak gerçekten bir şey yapıp yapmadığından emin değilim.
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}
Birisi burada neyin yanlış gidebileceği ve nasıl düzeltileceği konusunda rehberlik edebilir mi?
Teşekkürler
Invoke-WebRequest : The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.
Daha fazla bilgi için $ Error [0] .Exception.InnerException'ı keşfetmeyi deneyebilirsiniz .. .
Invoke-RestMethod
veyaInvoke-WebRequest
?