有人可以帮我理解如何做这个API的事吗?问题是,它不显示输出。然后,我了解到GET
并不真正需要(可能存在或不存在)成为代码的一部分,但在这种情况下,当我删除GET
时,我收到错误输出。这link是我需要做的......(请参阅链接)
到目前为止,我有这段代码......
<?php
$data = '';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'GET https://api.dudamobile.com/api/analytics/site/{site_name}?from=2015-01-12&result=activities');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, "{username}:{password}");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data))
);
$output = curl_exec($ch);
curl_close($ch);
print_r($output);
?>