0
有沒有方法通過API設置SoundCloud用戶的描述?我們有一個音樂家「日期」的應用程序,並希望自動添加日期到用戶的個人資料。通過API設置/編輯SoundCloud用戶的描述
我們該怎麼做?如果您使用的是PHP
<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>
,前提是你使用的SoundCloud的文檔,你可以: