我想在 SoundCloud 的 SC.get('/tracks') 函数中指定两个用户 ID。这可能吗?
像这样的东西:
function getTracks() {
SC.get('/tracks', {
user_ids: {user_id: 00001, user_id: 000002}
}, function(tracks) {
// build a list of tracks from the two soundcloud users
});
}