diff --git a/parse/ParseRestClient.php b/parse/ParseRestClient.php index ca0c89d..8adf6ff 100644 --- a/parse/ParseRestClient.php +++ b/parse/ParseRestClient.php @@ -92,7 +92,10 @@ public function request($args){ $urlParams = http_build_query($args['urlParams'], '', '&'); $url = $url.'?'.$urlParams; } - + + //telling php to ignore SSL certificate warning + curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false); + curl_setopt($c, CURLOPT_URL, $url); $response = curl_exec($c);