We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sdk-php/lib/net/authorize/util/HttpClient.php is not configurable from what I can tell.
sdk-php/lib/net/authorize/util/HttpClient.php
it would be nice to be able to add curl options to the request, specifically to specify the ssl version.
curl
curl_setopt($curl_request, CURLOPT_SSL_VERIFYHOST, 2);
Similar to the way the Stripe SDK works, Example:
\Stripe\ApiRequestor::setHttpClient( new \Stripe\HttpClient\CurlClient( [ CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2 ] ) );
The text was updated successfully, but these errors were encountered:
Agreed that this would be nice to have. Updating linux might not be able to happen in some cases.
Sorry, something went wrong.
Thanks @peledies, this looks like a good feature to have. We can have a look into adding this configuration in the SDK.
No branches or pull requests
sdk-php/lib/net/authorize/util/HttpClient.php
is not configurable from what I can tell.it would be nice to be able to add
curl
options to the request, specifically to specify the ssl version.Similar to the way the Stripe SDK works, Example:
The text was updated successfully, but these errors were encountered: