我有一个脚本,可以在spotify上执行搜索。 但是我想在我的网站上只有一个类型,从而将搜索范围限制在一个类型中。例如:摇滚。
在搜索字段中键入任何波段的名称时,如果它在Rock类型中,它将出现,否则没有任何反应。
我将把这个支持的spotify链接:
https://developer.spotify.com/web-api/console/get-search-item/#complete
我想修改的代码是:
<?php namespace App\Services\Search;
interface SearchInterface {
/**
* Search database using given params.
*
* @param string $q
* @param int $limit
* @param string $type
*
* @return array
*/
public function search($q, $limit = 10);
}
答案 0 :(得分:0)
来自https://developer.spotify.com/web-api/search-item/
根据搜索的对象类型,其他可能的字段过滤器包括流派(适用于曲目和艺术家),upc和isrc。例如,q = lil%20genre:%22southern%20hip%20hop%22&amp; type = artist。如果genre关键字字符串包含空格,请使用双引号。
当您提交搜索查询时,请在查询中包含genre:"your genre"
以及您要搜索的任何其他字词。