如何在我的网站上有一个SoundCloud Follow按钮?

时间:2014-09-29 01:18:28

标签: soundcloud vimeo vimeo-api

有没有办法在我的网站上嵌入一个SoundCloud Follow按钮,以便用户可以自己从网站上关注页面/频道?

是否有可能与Vimeo有类似的东西?

3 个答案:

答案 0 :(得分:1)

看起来SoundCloud为"以及"通过他们的API

不幸的是,目前他们已经使用他们的API关闭了来自registering的新应用...不确定何时/是否会重新打开。

答案 1 :(得分:0)

感谢@ davidpm4 - 让它使用更新的API here

这是auth。弹出代码:

<script src="https://connect.soundcloud.com/sdk/sdk-3.3.0.js"></script>
<script>
SC.initialize({
  client_id: 'YOUR_CLIENT_ID',
  redirect_uri: 'http://example.com/callback'
});

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

这是回调:

<script src="https://connect.soundcloud.com/sdk/sdk-3.3.0.js"></script>
<script>
SC.initialize({
  client_id: 'YOUR_CLIENT_ID',
  redirect_uri: 'http://example.com/callback'
});

SC.connect().then(function() {
  // Follow user with ID 3207
  SC.put('/me/followings/3207').then(function(){
    // Unfollow the same user
    SC.delete('/me/followings/3207');
  });
});
</script>

答案 2 :(得分:-2)

对于SoundCloud,您可以在此处自定义图标 - https://soundcloud.com/pages/embed