Javascript 有没有办法从SoundCloud oEmbed回调实时搜索时间?

Javascript 有没有办法从SoundCloud oEmbed回调实时搜索时间?,javascript,json,api,sdk,soundcloud,Javascript,Json,Api,Sdk,Soundcloud,一般来说,我可以使用JavaScript,但我还没有掌握回调。 我这里有一段代码,它只是将播放器嵌入到页面的div位置。我使用php从json获取uri <div id="widgetLocation"></div> <script type="text/JavaScript"> SC.oEmbed("<?php print $obj->{'uri'}; ?>", {

一般来说,我可以使用JavaScript,但我还没有掌握回调。 我这里有一段代码,它只是将播放器嵌入到页面的div位置。我使用php从json获取uri

    <div id="widgetLocation"></div>

    <script type="text/JavaScript">
        SC.oEmbed("<?php print $obj->{'uri'}; ?>", {
                                                    // optional parameters
                                                    sharing         : false,
                                                    buying          : false,
                                                    liking          : false,
                                                    show_artwork    : false,
                                                    show_comments   : false,
                                                    show_playcount  : false
                                                    },
                 document.getElementById("widgetLocation")

        );

    </script>

SC.oEmbed(“{
//可选参数
分享:错,
购买:错,
喜欢:错,
展示艺术作品:假,
show_注释:false,
show_playcount:false
},
document.getElementById(“widgetLocation”)
);
我看了这里:看了这里的操场:(我能做的只是查看源代码,但它是用非常复杂的javaScript编写的,我似乎不知道如何使用js SDK,它是SC.oEmbed。它似乎使用了稍微不同的js库


我想要的是一些简单的东西,比如当您在小部件中搜索时,它会在标签中显示当前位置或其他东西。可以这样做吗?

使用
currentTime
方法和媒体片段API: