如何使用 Soundcloud API 下载曲目?
How download track with Soundcloud API?
我想使用 Soundcloud SDK v3 从 Soundcloud 下载曲目
<script src="https://connect.soundcloud.com/sdk/sdk-3.0.0.js"></script>
我通常使用此脚本从网站上检索曲目 (javascript)
SC.get('/tracks',{
original_format: 'mp3',
sharing: 'public',
streamable: true,
downloadable: true,
state: 'finished',
track_type: 'original'
}).then(function(tracks) {
var html = '';
$.each(tracks, function(index, track){
html += previewTrack(track);
});
$('#tracks-wrapper').append(html).hide().fadeIn();
$('.icon-refresh','#refresh-btn').removeClass('fa-spin');
});
我的曲目播放正常,但我不知道如何通过 API 从 soundcloud 下载它们。
例如,当我使用 SDK 播放曲目时,我从网站收到此响应。
attachments_uri: "https://api.soundcloud.com/tracks/259412502/attachments"
download_count: 0
download_url: "https://api.soundcloud.com/tracks/259412502/download"
downloadable: true
最后我的问题是如何下载这首歌曲..
如果我在浏览器上使用这个download_url
,它不起作用
请帮帮我..
对不起我的英语..
您需要添加您的客户端id,否则您将无权下载。 https://api.soundcloud.com/tracks/259412502/download?client_id=CLIENT_ID
我想使用 Soundcloud SDK v3 从 Soundcloud 下载曲目
<script src="https://connect.soundcloud.com/sdk/sdk-3.0.0.js"></script>
我通常使用此脚本从网站上检索曲目 (javascript)
SC.get('/tracks',{
original_format: 'mp3',
sharing: 'public',
streamable: true,
downloadable: true,
state: 'finished',
track_type: 'original'
}).then(function(tracks) {
var html = '';
$.each(tracks, function(index, track){
html += previewTrack(track);
});
$('#tracks-wrapper').append(html).hide().fadeIn();
$('.icon-refresh','#refresh-btn').removeClass('fa-spin');
});
我的曲目播放正常,但我不知道如何通过 API 从 soundcloud 下载它们。 例如,当我使用 SDK 播放曲目时,我从网站收到此响应。
attachments_uri: "https://api.soundcloud.com/tracks/259412502/attachments"
download_count: 0
download_url: "https://api.soundcloud.com/tracks/259412502/download"
downloadable: true
最后我的问题是如何下载这首歌曲..
如果我在浏览器上使用这个download_url
,它不起作用
请帮帮我..
对不起我的英语..
您需要添加您的客户端id,否则您将无权下载。 https://api.soundcloud.com/tracks/259412502/download?client_id=CLIENT_ID