我已经为soundcloud注册了一个练习应用程序,以获取客户端ID。我的应用程序没有官方网站,因为我不想注册域名。我只是想学习如何使用.html和.js文件来使用soundcloud。我跟着API tutorials exactly,但每当我尝试使用soundcloud时都没有任何反应。我使用我的客户端ID初始化SC,并导入了JQuery和我需要的一切。谢谢你的帮助
我的html文件(practice.html):
<!doctype html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="//connect.soundcloud.com/sdk.js"></script>
<script src= "script.js"></script>
</head>
<body>
<div id="player"></div>
</body>
</html>
我的.js文件(script.js):
SC.initialize({
client_id: 'the client id they gave me...'
});
$(document).ready(function() {
SC.get('/tracks/293', function(track) {
SC.oEmbed(track.permalink_url, document.getElementById('player'));
});
});
再次,当我加载页面时没有任何反应......
答案 0 :(得分:0)
看起来你错过了SoundCloud JavaScript SDK的完整网址(缺少http:
):
<html>
<head>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://connect.soundcloud.com/sdk.js"></script>
<script src= "script.js"></script>
</head>
<body>
<div id="player"></div>
</body>
</html>
您应该能够在浏览器中本地运行此功能,因为SoundCloud支持跨源资源共享标头,删除了对XSS的限制:Of CORS We Do