Httpclient 4, error 302. How to redirect?

前端 未结 7 2046
忘了有多久
忘了有多久 2020-11-27 03:03

I want to access one site that first requires an (tomcat server) authentication and then log in with a POST request and keep that user to see the site\'s pages. I use Httpcl

7条回答
  •  猫巷女王i
    2020-11-27 03:59

    For HttpClient 4.3.x :

    HttpClient httpClient = HttpClientBuilder.create().setRedirectStrategy(new LaxRedirectStrategy()).build();
    

提交回复
热议问题