我正在为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
http://localhost:9000/channel
我仍在接受“你必须输入有效的重定向uri”。我做错了什么?