使用以下代码,窗口小部件右下角的Soundcloud上的声音链接可用(Firefox / OSX):
<iframe id="sc-widget" src="http://w.soundcloud.com/player/?url=http://soundcloud.com/k0s/bcn07" width="100%" height="166" scrolling="no" frameborder="no"></iframe>
<script src="http://w.soundcloud.com/player/api.js" type="text/javascript"></script>
但是当我将show_comments=false
添加为查询参数时,它会停止工作:
<iframe id="sc-widget" src="http://w.soundcloud.com/player/?url=http://soundcloud.com/k0s/bcn07&show_comments=false" width="100%" height="166" scrolling="no" frameborder="no"></iframe>
<script src="http://w.soundcloud.com/player/api.js" type="text/javascript"></script>
我做错了什么?
答案 0 :(得分:0)
这是小部件中的一个错误 - 评论的容器仍然被添加到页面中,它覆盖了链接。我现在已经修复了它,你应该在几分钟内看到它。
此外,url
参数应指向API端点:例如:
而不是
.../player/?url=http://soundclou...
应该是:
.../player/?url=http://api.soundclou...