We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a5b1b6 commit 96bd3ddCopy full SHA for 96bd3dd
NutshellApi.php
@@ -152,6 +152,7 @@ protected function _getApiEndpointForUser($username) {
152
curl_setopt($curl, CURLOPT_POST, true);
153
curl_setopt($curl, CURLOPT_POSTFIELDS, $this->json_encode($payload));
154
curl_setopt($curl, CURLOPT_HEADER, false);
155
+ curl_setopt($curl, CURLOPT_CAINFO, dirname(__FILE__).'/geotrust_global_ca.crt');
156
$result = curl_exec($curl);
157
if (curl_errno($curl)) {
158
throw new NutshellApiException('Curl error #' . curl_errno($curl) . ' while finding endpoint: '. curl_error($curl));
0 commit comments