1

トラック検索で意図しないエラーが発生したと思います。

タグに基づいてトラックを検索するデスクトップ アプリがあります。問題は、「q」パラメーターがないと、何を検索してもシステムが 503 エラーを返すことです。

それは1年間うまくいきましたが、最近だけです。(正確な時間はお答えできません)

これは意図した動作ですか?

4

1 に答える 1

0

タグが検索結果を返す限り、これはうまくいくようです:

$ 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 the 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"
于 2014-09-04T22:53:18.600 に答える