我正在尝试在JavaScript中编写一个用户可以输入艺术家的函数,它将返回该艺术家的SoundCloud页面的链接。例如!artist beyonce
- > https://soundcloud.com/beyoncemusic
我已经研究了很多,但仍然无法弄清楚如何完成这个简单的任务。有谁知道怎么做?
答案 0 :(得分:0)
您可以点击声音云API的搜索终结点。查看API的文档。
http://developers.soundcloud.com/docs#search
<script src="http://connect.soundcloud.com/sdk.js"></script>
<script>
SC.initialize({
client_id: 'YOUR_CLIENT_ID'
});
// find all sounds of buskers licensed under 'creative commons share alike'
SC.get('/tracks', { q: 'buskers', license: 'cc-by-sa' }, function(tracks) {
console.log(tracks);
});
</script>