我无法使用CURL进行API调用。以下是使用CURL进行API调用的代码
$ch=curl_init("http://sms.geekapplications.com/api/balance.php?authkey=2011AQTvWQjrcB56d9b03d&type=4");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER,
array("Authorization: Bearer"));
// execute the api call
$result = curl_exec($ch);
echo ($result);
答案 0 :(得分:0)
首先你可能想要使用一个函数...而你的CURL它没有正确构建。请看我的例子
//gets geekapplications SMS balance
function getBalance() {
$url = 'http://sms.geekapplications.com/api/balance.php?' . http_build_query([
'authkey' => '2011AQTvWQjrcB56d9b03d',
'type' => '4'
]);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$http = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($http == 200) {
$json = @json_decode($response, TRUE);
return $json;
} else {
echo 'There was a problem fetching your balance...';
}
}
在您的控制器中使用它,尝试print_r($this->getBalance());
应该输出一个带有余额的数组。