2

我已经为 soundcloud 注册了一个练习应用程序以获取客户端 ID。我的应用没有官方网站,因为我不想注册域。我只是想学习如何使用 .html 和 .js 文件来使用 soundcloud。我完全按照 API 教程进行操作进行操作,但每当我尝试使用 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'));
    });
});

同样,当我加载页面时没有任何反应......

4

1 回答 1

0

看起来您缺少 SoundCloud JavaScript SDK 的完整 url(缺少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 的限制:我们做的 CORS

于 2013-06-24T06:23:23.257 回答