我想在我的網頁上播放Soundcloud歌曲。我只是試圖使用API進行測試,但我似乎沒有得到任何地方。任何想法我做錯了什麼? Soundcloud將授權我,並將爲該歌曲顯示一個對象,但不會播放該歌曲。不確定如何查找更多信息,初學者的信息很難找到或不起作用。嘗試從developers.soundcloud.com執行此操作無法在我的網頁上播放Soundcloud歌曲
SC.initialize({
client_id: 'entered my id from the registered app here'
});
var track_url = 'https://soundcloud.com/aviciiofficial/hope-theres-someone-1';
SC.oEmbed(track_url, { auto_play: true }).then(function(oEmbed) {
console.log('oEmbed response: ', oEmbed);
});