我希望将用户搜索包含关键字的Spotify歌曲的功能合并到一起。我注意到在CocoaLibSpotify中有一个searchWithSearchQuery:
,但在Spotify API中没有看到类似的东西。不鼓励使用CocoaLibSpotify,因为它已被弃用。
有没有办法使用Spotify API进行搜索?
答案 0 :(得分:1)
Spotify API有一个this android dev doc。它需要 q 参数,您的搜索查询以及类型参数,这是要搜索的内容类型(在歌曲的情况下,即“跟踪”)。因此,您可以点击 / v1 / search?type = track& q = 来搜索歌曲。