Deezer JS SDK无法识别重定向uri

时间:2016-12-04 17:12:18

标签: deezer

我正在为Deezer开发一款应用程序。

我喜欢这个

<div id="dz-root"></div>
<script>
        window.dzAsyncInit = function () {
            DZ.init({
                appId: 'xxxxxx',
                channelUrl: 'http://localhost:9000/channel'
            });
        };
        (function () {
            var e = document.createElement('script');
            e.src = '//e-cdn-files.deezer.com/js/min/dz.js';
            e.async = true;
            document.getElementById('dz-root').appendChild(e);
        }());
</script>

uri http://localhost:9000/channel只有一个带有Deezer JS SDK源代码的脚本标记。

在开发者控制台上,我有

  • 应用领域:localhost:9000
  • 重定向Uri:http://localhost:9000/channel

我仍在接受“你必须输入有效的重定向uri”。我做错了什么?

0 个答案:

没有答案