来自php-gracenote库的演示文件没有返回album_art_url
。"Moby"是默认的搜索查询。即使我将搜索查询更改为其他内容,它仍然不返回album_art_url
。
是库损坏或Gracenote禁用album_art_url
在搜索?
这是Gracenote API的一个限制。它只在执行SINGLE_BEST
查找(在php-gracenote库中称为BEST_MATCH_ONLY
)时返回专辑封面。
您可以向php-gracenote的任何搜索函数传递一个额外的参数来获取专辑封面,但是您只能获得单个最佳结果,而不是多个结果。
// No album art, but multiple results.
$api->searchArtist("Moby");
// You get album art, but only one result.
$api->searchArtist("Moby", GracenoteWebAPIGracenoteWebAPI::BEST_MATCH_ONLY);