爲了開發我想在本地主機上使用Deezer Javascript SDK。我在localhost:8000
上設置了應用程序域,但它不起作用。我的HTML文件是localhost:8000
:本地主機上的Deezer Javascript SDK
<!DOCTYPE html>
<html>
<head>
<title>Deezer to Spotify</title>
</head>
<body>
<div id="dz-root"></div>
<script src="http://cdn-files.deezer.com/js/min/dz.js"></script>
<script src="DeezerToSpotifySwitcher.js" charset="utf-8"></script>
</body>
</html>
我的JavaScript文件:
DZ.init({
appId: '147671',
channelUrl: 'http://localhost:8000/DeezerToSpotifySwitcher.html'
});
DZ.login(function (response) {
if (response.authResponse) {
DZ.api('/user/me', function (response) {
alert('Good to see you, ' + response.name + '.');
});
} else {
alert('User cancelled login or did not fully authorize.');
}
}, { perms: 'basic_access,email' });
我有什麼應用程序域設置?我錯過了別的東西嗎? channelUrl:
您是否嘗試將developers.deezer.com上的應用程序域更新爲localhost:8000?它應該工作。 – 2014-11-24 07:44:52
是的,我做了,但沒有幫助:( – JoLau 2014-11-24 23:00:16