我正在编写一个代码,用PHP中的API Key和API Secret(密码)实现Curl。
我想在PHP中实现以下Curl代码
curl -X GET -H "Accept: application/json" -u API_KEY:API_SECRET my_url
我尝试过: -
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
echo '<pre>';
print_r($output);
exit;
但是当我打印输出时,我总是得到空数据。
谁能告诉我究竟做错了什么? 或者是否有任何其他方法在PHP中实现上述curl
非常感谢提前和抱歉如果我的问题有任何错误