从HttpClient获取500错误,可在浏览器中使用

时间:2017-10-03 19:39:35

标签: java apache httpclient http-redirect

我正在使用Apache HttpClient尝试向服务器提交一些帖子数据。不幸的是,我无法访问服务器以获取任何日志信息,因此无法实现。

如果我使用Firefox完成此过程,它可以正常工作。 (我在这个特定页面上收到302警告)

我已经匹配了Firefox和我的程序的Request标头。

Firefox请求标头:

Host: server ip
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate, br
Referer: https://server ip/
Content-Type: application/x-www-form-urlencoded
Content-Length: 407
Cookie: sessionId=blahblah
Connection: keep-alive
Upgrade-Insecure-Requests: 1

我的程序请求context.getRequest().getAllHeaders();

中显示的标题
Host: server ip
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate, br
Referer: https://server ip/
Content-Type: application/x-www-form-urlencoded
Connection: keep-alive
Upgrade-Insecure-Requests: 1
Content-Length: 406
Cookie: sessionId=blahblah

通过比较EntityUtils.toString(httpPost.getEntity(), "UTF-8");的输出和Firefox工具的内置工具来查看请求正文,我已经匹配了请求的正文,它们几乎匹配字符的字符。 (只是会话ID略有不同,因为它没有使用相同的会话。)

我不确定还有什么要检查。什么可能导致服务器在浏览器和程序之间表现不同?

以下是我的POST请求代码。

HttpPost httpPost = new HttpPost("https://" + getIp() + "");

List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("FTPUsername", "blah"));
params.add(new BasicNameValuePair("FTPPassword", "blah"));
params.add(new BasicNameValuePair("FormButtonSubmit", "OK"));
httpPost.setEntity(new UrlEncodedFormEntity(params));

httpPost.setHeader("Host", ip);
httpPost.setHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55.0");
httpPost.setHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"); 
httpPost.setHeader("Accept-Language", "en-US,en;q=0.5"); 
httpPost.setHeader("Accept-Encoding", "gzip, deflate, br"); 
httpPost.setHeader("Referer", referer);
httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded");
httpPost.setHeader("Connection", "keep-alive");
httpPost.setHeader("Upgrade-Insecure-Requests", "1");

//Response
HttpResponse response = getHttpClient().execute(httpPost, LoginRequest.context);
int statusCode = response.getStatusLine().getStatusCode();
httpPost.releaseConnection();

我意识到这可能是很多事情,因为500是一个服务器错误,但它必须是我提交错误或我错过了一些东西,因为它在浏览器中完美运行

2 个答案:

答案 0 :(得分:6)

302“警告”实际上是重定向。 HTTP客户端确实自动重定向,您必须标记RedirectStrategy,对于HttpClient 4.3:

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

请参阅examples in answerw3 docs

  

如果收到302状态代码以响应除以外的请求   GET或HEAD,用户代理不得自动重定向   请求,除非可以由用户确认

答案 1 :(得分:0)

您使用Windows机器吗?还是Linux机器?

如果您使用的是Windows机器,您是否尝试过使用WAMP服务器以便Linux使用LAMP服务器,那么如果您安装它,您将无法获得这些错误,这就是我如何修复错误。如果您安装这两个服务器,请通过登录Skype更改端口号并更改端口号或卸载您的Skype。它应该工作。