curl没有响应回显打印

时间:2013-07-17 21:33:45

标签: php json curl

我想知道为什么我没有得到任何回应。我已经在xampp中的php中取消了php.ini中的curl。 (我发现其他帖子,我也应该在apache和php4文件夹中取消注释php.ini的curl部分但是只有1个php.ini,可以在php dir中找到)。

在我取消注释curl部分之前,浏览器会给出一个无法识别的函数错误。在我取消注释之后,它没关系,所以我想这部分还可以。

<?php

$whmusername = "my_email";
$whmpassword = "my_password";

$query = "https://api.appannie.com/v1/accounts";

$ch = curl_init();
// Sets the URL cURL will open
curl_setopt($ch, CURLOPT_URL, $query);
// Here's the HTTP auth
// The 3rd argument is your Twitter username and password joined with a colon
curl_setopt($ch, CURLOPT_USERPWD, $whmusername." : ".$whmpassword);
// Makes curl_exec() return server response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// And here's the result JSON
$response = curl_exec($ch);
curl_close($ch);

echo 'Code line went here 1,';

print $response;
echo $response;

echo 'Code line successful here too';
?>

然后我进入浏览器的所有内容是:     代码行到这里1,代码行也在这里成功

没有回应?或者我忘记了什么。 我希望能够看到响应或json格式吗?

这是api的链接: http://support.appannie.com/entries/23224038-1-Quick-Start http://support.appannie.com/categories/20082753-Analytics-API

另外。我从这里得到这个代码: Appannie api basic authentication

其他人可以试试吗?

0 个答案:

没有答案