wildcatsの日記

赤羽在住でIT関係の会社の社長やってます。

HttpURLConnectionのretry回数


非常に気になるのは「Server redirected too many times (20)」です。
どうやらユーザ名やパスワードが誤っていて認証に失敗した場合、 何度でもリトライをして、最終的にはリトライ回数が 20回に達するときにあきらめてしまうようです。
http://x68000.q-e-d.net/~68user/net/java-http-url-connection-2.html


I'm still trying to find a solution with the same error. You can try adjusting the system property http.maxRedirects, but it hasn't fixed my current problem, it just takes longer to fail. 20 is the default maxRedirects.

System.setProperty("http.maxRedirects", "50");
http://forums.sun.com/thread.jspa?threadID=710231


TwitterのClientを作ってて、テストで間違ったパスワードを渡してBasic認証が失敗に終わり
自分のアカウントがロックされちゃったのでメモ。