我試圖用查詢(甚至標籤/流派過濾器)過濾一個SoundCloud用戶的軌跡。我可以獲取用戶的曲目,但只要添加查詢參數,它就會返回所有聲音雲用戶曲目。過濾一個用戶軌跡時的Soundcloud API錯誤
這不起作用:
SC.get('/users/00001/tracks', {q: 'Black Night'}, function(tracks) {
// returns tracks from all soundcloud users which contain 'Black Night'
// rather than the single user
});
也不這樣:
SC.get('/tracks', {user_id: '00001', q: 'Black Night'}, function(tracks) {
// returns tracks from all soundcloud users which contain 'Black Night'
// rather than the single user
});
重複http://stackoverflow.com/questions/14752471/how-to-search-specific-users-tracks逐標籤與最完善的雲的API。這看起來像你所做的應該工作。但事實並非如此。我寫了關於它的SoundCloud,但我沒有收到回覆。 – MikeSmithDev 2013-03-01 05:06:17