How to prevent apache http client from following a redirect

后端 未结 10 1845
独厮守ぢ
独厮守ぢ 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:42

    Using HttpClient 4.3 and Fluent:

    final String url = "http://...";
    final HttpClient client = HttpClientBuilder.create()
        .disableRedirectHandling()
        .build();
    final Executor executor = Executor.newInstance(client);
    final HttpResponse response = executor.execute(Request.Get(url))
        .returnResponse();
    

提交回复
热议问题