Skip to content

Commit

Permalink
Set default use SSL to false
Browse files Browse the repository at this point in the history
  • Loading branch information
hlu2 committed Oct 3, 2019
1 parent 494461b commit 670e020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/HttpClients/SyncRestHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private function OAuth2APICall($baseURL, $queryParameters, $HttpMethod, $request
throw new SdkException("IPP or other Call is not supported in OAuth2 Mode.");
}

$intuitResponse = $this->httpClientInterface->makeAPICall($requestUri, $HttpMethod, $httpHeaders, $requestBody, null, true);
$intuitResponse = $this->httpClientInterface->makeAPICall($requestUri, $HttpMethod, $httpHeaders, $requestBody, null, false);
$faultHandler = $intuitResponse->getFaultHandler();
$this->LogAPIResponseToLog($intuitResponse->getBody(), $requestUri, $intuitResponse->getHeaders());

Expand Down

1 comment on commit 670e020

@robolmos
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

Please sign in to comment.