I'm trying to filter a single SoundCloud user's tracks with a query (or even a tags/genre filter). I can get a user's tracks, but as soon as I add a query parameter, it returns all sound cloud users tracks.
This doesn't work:
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
});
Nor does this:
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
});