Invoke-RestMethod Issues

I am trying to connect to an external api website. I don’t know details around how REST/JSON works, but I want to use powershell to download a csv file via GET method. I could successfully connect via CURL, but with powershell I cannot, and am exhausted.

CURL:

curl.exe -v -H “Accept: application/json” -u APIKEY: “https://”

Powershell:

Invoke-RestMethod -Uri ‘https://’ -Headers @{“AUTHORIZATION”="Basic "} -Method Get

I always receive following error:

the underlying connection was closed an unexpected error occurred on a send and the underlying connection was closed an unexpected error occurred on a receive

I tried using following script for certificate:

add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy

$result = Invoke-WebRequest -Uri “https://IpAddress/resource

Source: .net - Powershell v3 Invoke-WebRequest HTTPS error - Stack Overflow

still no luck.

Can someone help me understand what I am doing wrong?

Basic is followed by Base64Encoded API KEY. This is what I see when I use the API Web, the one website provides:

{
“Accept”: “application/json”,
“Authorization”: “Basic Base64Encode”,
“Content-Length”: 0,
“x-forwarded-for”: “3 IP Addresses Separated by Comma”
}

I am using following powershell version:

PS C:> $PSVersionTable.PSVersion

Major Minor Build Revision


3 0 -1 -1

I upgraded to v4

PS C:> $PSVersionTable.PSVersion

Major Minor Build Revision


4 0 -1 -1

and also used:

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

since TLS1.2 is the requirement, still same error:

Invoke-RestMethod : The underlying connection was closed: An unexpected error occurred on a receive.
At line:1 char:1

  • Invoke-RestMethod -Method Get -Uri 'https:////// …
  •   + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-RestMethod], We
     eption
      + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeRestMethodCommand
    
    
    
    

If I don’t use https, then it says:

Unable to connect to the remote server

I moved to 2012 R2 server, and the issues resolved.