如何正确链接到urlencode spotify search

时间:2017-02-07 08:58:29

标签: spotify urlencode

似乎已经改变了一个链接到spotify搜索的方式。以下代码应该有效:

<a href="spotify:search:track:castle+on+the+hill+artist:ed+sheeran">spotify:search:track:castle on the hill artist:ed sheeran</a>

当Spotify打开时,表示没有找到“track:castle + on + the + hill + artist:ed + sheeran”的结果

我们也尝试了百分比编码:

<a href="spotify:search:track:castle%20on%20the%20hill%20artist:ed%20sheeran">Castle on the hill Ed Sheeran</a>

但这也失败了。

有关如何正确链接到Spotify搜索的任何建议吗?

2 个答案:

答案 0 :(得分:0)

我明白了,解决方案发布在这里 https://pappmaskin.no/2017/02/linking-to-a-spotify-search-with-both-track-and-artist/

网址有一种新格式:

track:"castle on the hill" artist:"ed sheeran" 

你需要将该部分分别编码到

track%3A%22castle%20on%20the%20hill%22%20artist%3A%22ed%20sheeran%22.

并添加spotify:搜索:在前面:       Spotify的:搜索:跟踪%3A%22castle%20on%第二十条%20hill%22%20artist%3A%22ed%20sheeran%22

答案 1 :(得分:0)

您必须引用这些字段吗? 与Spotify Web API一样,如果要这样做 这意味着“精确搜索”。 跟踪:“检查自己” 可能找不到名为“检查自己”的曲目 哪里 跟踪:检查自己 可能(我已经排除了空格编码)

您是否尝试仅对“:”进行编码 追随轨道和艺术家? 当然还有空格?