include("../Vendor/phpGracenote/Gracenote.class.php");
$clientID = ' my Key ';
$clientTag = ' my Tag ';
$api = new Gracenote\WebAPI\GracenoteWebAPI($clientID, $clientTag);
$userID = $api->register();
$results = $api->searchTrack("Kings Of Convenience", "Riot On An Empty Street", "Homesick", Gracenote\WebAPI\GracenoteWebAPI::BEST_MATCH_ONLY);
pr($results);
我只收到错误:
尝试发出请求时,cURL返回错误。 错误:发生内部错误。
exception:code = 2003,message = cURL在尝试时返回错误 提出请求。,ext = 60
我认为问题是,我首先必须注册我的客户信息才能获得用户ID。
$userID = $api->register();
但我得到这个错误,现在不能做我能做的......
...在GracenoteError.class.php中:
const HTTP_RESPONSE_ERROR = 2003; // A cURL error that wasn't a timeout or HTTP400 response.
答案 0 :(得分:0)
似乎是cURL SSL证书问题。我通过以下方式解决了这个问题: