11
Powershell v3 Invoke-WebRequest HTTPS hatası
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 …
126
.net
rest
powershell
https