I want to search for tracks by tag relating only to my user name i.e. the Royal Opera House.
For example:
http://api.soundcloud.com/users/royaloperahouse/tracks/?client_id=238947HSGDHSDG&tags=eric
tells me I need to use a q parameter. To humour it I search:
http://api.soundcloud.com/users/royaloperahouse/tracks/??client_id=238947HSGDHSDG&tags=eric&q=e
and simply get a list of sounds from the whole of Sound Cloud not the ones relating to just my user.
Similarly if I try and search the tracks API (not by users) and limit the query with &user_id
I get videos relating to all users not one specific to the Royal Opera House.
The ultimate aim is to find all tracks that the Royal Opera House has uploaded relating to a specific artist. At the moment the way we are solving it is by getting all of our uploaded tracks (37 at present) and iterating through those to match the tracks by the relevant tag. Obviously as our music list grows this will start to be a problem.
Thanks.