如何 link 正确地对 spotify 搜索进行 urlencode
How to link to correctly urlencode spotify search
links 到 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>
但这也失败了。
关于如何正确 link Spotify 搜索有什么建议吗?
我弄明白了,解决方案贴在这里
https://pappmaskin.no/2017/02/linking-to-a-spotify-search-with-both-track-and-artist/
url 有一种新格式:
track:"castle on the hill" artist:"ed sheeran"
你需要url单独编码那部分,
track%3A%22castle%20on%20the%20hill%22%20artist%3A%22ed%20sheeran%22.
并在前面加上spotify:search:in:
spotify:search:track%3A%22castle%20on%20the%20hill%22%20artist%3A%22ed%20sheeran%22
你必须引用字段吗?
与 Spotify 网络一样 API 如果你这样做了
这意味着“精确搜索”。
跟踪:“检查你自己”
可能找不到名为“check yo self”的曲目
在哪里
track:check 你自己
可能(我排除了 space 编码)
你试过只对“:”进行编码吗
在曲目和艺术家之后?
当然还有 spaces?
links 到 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>
但这也失败了。
关于如何正确 link Spotify 搜索有什么建议吗?
我弄明白了,解决方案贴在这里 https://pappmaskin.no/2017/02/linking-to-a-spotify-search-with-both-track-and-artist/
url 有一种新格式:
track:"castle on the hill" artist:"ed sheeran"
你需要url单独编码那部分,
track%3A%22castle%20on%20the%20hill%22%20artist%3A%22ed%20sheeran%22.
并在前面加上spotify:search:in: spotify:search:track%3A%22castle%20on%20the%20hill%22%20artist%3A%22ed%20sheeran%22
你必须引用字段吗? 与 Spotify 网络一样 API 如果你这样做了 这意味着“精确搜索”。 跟踪:“检查你自己” 可能找不到名为“check yo self”的曲目 在哪里 track:check 你自己 可能(我排除了 space 编码)
你试过只对“:”进行编码吗 在曲目和艺术家之后? 当然还有 spaces?