11
Erro de HTTPS do PowerShell v3 Invoke-WebRequest
Usando Invoke-WebRequest e Invoke-RestMethod do Powershell v3, usei com êxito o método POST para postar um arquivo json em um site https. O comando que estou usando é $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 No entanto, quando tento usar o método …
126
.net
rest
powershell
https