11
ข้อผิดพลาด Powershell v3 Invoke-WebRequest HTTPS
การใช้ Invoke-WebRequest และ Invoke-RestMethod ของ Powershell v3 ฉันใช้วิธี POST เพื่อโพสต์ไฟล์ json ไปยังเว็บไซต์ https คำสั่งที่ฉันใช้คือ $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 อย่างไรก็ตามเมื่อฉันพยายามใช้เมธอด GET เช่น: Invoke-WebRequest -Uri https://IPADDRESS/resource -Credential $cred -certificate $cert -Method GET ข้อผิดพลาดต่อไปนี้จะถูกส่งกลับ Invoke-RestMethod : The underlying connection was closed: An …
126
.net
rest
powershell
https