有没有办法通过API设置SoundCloud用户的描述?我们有一个音乐家“日期”的应用程序,并希望自动添加日期到用户的个人资料。
我们怎么能这样做?
答案 0 :(得分:2)
如果您使用的是Javascript,则在对用户进行身份验证后,您可以使用此功能更改用户的说明:
<script>
SC.initialize({
client_id: 'your_client_id',
redirect_uri: 'your_callback_url'
});
SC.connect().then(function() {
SC.put('/me', {
user: { description: 'the new description' }
});
});
</script>
如果您使用的是Php,只要您使用的是Soundcloud的文档,就可以这样做:
user = client.post('/me', :description => 'I am using the SoundCloud API!')
puts user.description
欲了解更多信息,您可以访问: https://developers.soundcloud.com/docs#authentication。向下滚动到获取有关经过身份验证的用户的信息&#39;节
希望我帮助