用户登录时请输入以下内容

时间:2016-01-17 15:03:02

标签: javascript sdk soundcloud

我使用soundcloud sdk。我希望当用户通过soundcloud身份验证登录我的网站时,该用户可以关注我的soundcloud个人资料。

的index.html

<script src="https://connect.soundcloud.com/sdk/sdk-3.0.0.js"></script>
<script>
SC.initialize({
  client_id: 'f5afdac70e530f7ba9a1b56e880b35a8',
  redirect_uri: 'http://localhost/SC/login.html'
});

// initiate auth popup
SC.connect().then(function() {
  return SC.get('/me');
}).then(function(me) {
    SC.put('/me/followings/190497691');
    alert('Hello, ' + me.username);
});
</script>

的login.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Connect with SoundCloud</title>
  </head>
  <body onload="window.setTimeout(window.opener.SC.connectCallback, 1)">
    <b style="text-align: center;">This popup should automatically close in a few seconds</b>
  </body>
</html>

当用户访问我的index.html时,会显示带有sc登录的弹出窗口,但此后不会发生任何事情。

我看了控制台日志,看到了这个: Developer tools screenshot

任何人都可以帮助我吗?谢谢你提前。

0 个答案:

没有答案