SoundCloud track search without q parameter returns 503 -


i think there unintended error track searching.

i have desktop app searches tracks based on tags. problem without "q" parameter, no matter search system returns 503 error.

it worked fine year, recently. (i can't give exact time)

is intended behavior?

this seems work fine, long tag returns search result:

$ curl -ss "https://api.soundcloud.com/tracks.json?client_id=$client_id&tags=rock&limit=1"  | python -m json.tool | egrep 'tag_list|error_message'         "tag_list": "korn skrillex kill noise sonny moore narcissistic cannibal dubstep dance metal rock",  $ curl -ss "https://api.soundcloud.com/tracks.json?client_id=$client_id&tags=jazz&limit=1"  | python -m json.tool | egrep 'tag_list|error_message'         "tag_list": "okeh \"okeh records\" preview jazz \"new releases\" brand-new",  $ curl -ss "https://api.soundcloud.com/tracks.json?client_id=$client_id&tags=barbie&limit=1"  | python -m json.tool | egrep 'tag_list|error_message'         "tag_list": "\"g.i. joe\" barbie transformers positivity toys video game music vgm nes snes genesis nintendo",  $ curl -ss "https://api.soundcloud.com/tracks.json?client_id=$client_id&tags=foobar&limit=1"  | python -m json.tool | egrep 'tag_list|error_message'             "error_message": "503 - service unavailable" 

Comments

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

java - Using an Integer ArrayList in Android -