How to prevent apache http client from following a redirect

后端 未结 10 1785
独厮守ぢ
独厮守ぢ 2020-11-28 06:08

I\'m connecting to a remote server with apache http client. the remote server sends a redirect, and i want to achieve that my client isn\'t following the redirect automatica

10条回答
  •  有刺的猬
    2020-11-28 06:36

    Rather than use the property directly you can use:

    final HttpParams params = new BasicHttpParams();
    HttpClientParams.setRedirecting(params, false);
    

提交回复
热议问题