我希望能够不断获得使用 json 的 oembed 的用户的最后 10 首曲目。
$.getJSON("http://soundcloud.com/oembed",
{url: "https://soundcloud.com/aviciiofficial", format: "json"},
function(data)
{
console.log(data.html);
})
Data.html 返回 soundcloud 播放器的 html 代码,但该播放器包含一个包含所有用户曲目的曲目集。我希望能够单独获取曲目(例如:data[0].html)。如何获取所有最新曲目的数组?
控制台输出:
<iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Fusers%2F1861068"></iframe>
谢谢!