Hi there!
I’m building a WordPress site which connects to remote server to populate iframes on various pages of my site. My site connects to the remote server using a PHP code snippet. The code was working but now $curl stopped working and echos Resource id #34. I am not aware of any changes to my site and I have tried identifying the culprit by deactivating my plugins without success. Furthermore, my webhost doesn’t seem to have much of an idea about the cause and there doesn’t seem to be much info on the web.
var_export($response); returns "false"
var_export($err); returns ''
Any help would be really appreciated! Thanks in advance!
My code is below:
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.domo.com/oauth/token?
grant_type=client_credentials&scope=data%20user%20dashboard",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => "",
CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
CURLOPT_USERPWD => "$clientid:$secret"
));
$response = curl_exec($curl);
$err = curl_error($curl);
var_export($response);
var_export($err);
curl_close($curl);