Hi,
I'm trying to get started with the API calls and followed the example and instructions in website:
The PHP code is:
$data = $items[0]['descripcion'];
echo $data."<br /><br />";
$url = " http://api.spinnerchief.com:443/apikey=apixxxxxxxxxxx&username=mynick&password=mypass";
$req = curl_init();
curl_setopt($req, CURLOPT_URL, $url);
curl_setopt($req, CURLOPT_RETURNTRANSFER,1);
curl_setopt($req, CURLOPT_POST, true);
curl_setopt($req, CURLOPT_POSTFIELDS, $data);
$result = trim(curl_exec($req));
curl_close($req);
print_r($result);
The question is that nothing is returned and API calls in dashboard do not countdown.
What's wrong?