为了账号安全,请及时绑定邮箱和手机立即绑定

HttpClient的POST请求返回302解决

HttpClient请求POST提示302,而且返回的response中的Localtion是我访问时使用的URL,
例如:我使用的URL是https://bbs.csdn.net?client_id=10333&user=test,
localtion中也是这个https://bbs.csdn.net?client_id=10333&user=test

我试了直接使用curl可以返回json
我的post方法:

public static StringBuilder post(String url, Object data, String encoding) {
        log.info("HttpClient post start => "+url);
        CloseableHttpResponse response = null;
        HttpPost httpPost = null;
        HttpHost httpHost = null;
        StringBuilder responseEntity = null;
        String strings = "";

            URL _url = new URL(url);

            httpPost = new HttpPost(url);

            httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded");

            if(!Stringer.isNullOrEmpty(data)){

                log.debug("HttpClient post url => "+url+", data:"+JSON.toJSONString(data));

                if (data instanceof Map) {
                    // Map方式传参处理
                    Map<String,String> params = (Map<String,String>) data;

                    List<NameValuePair> nvps = new ArrayList<NameValuePair>();
                    if (!Stringer.isNullOrEmpty(data)) {
                        Set<String> keySet = params.keySet();
                        for (String key : keySet) {
                            nvps.add(new BasicNameValuePair(key, params.get(key)));
                        }
                    }
                    httpPost.setEntity(new UrlEncodedFormEntity(nvps, encoding));

                } else if(data instanceof String){
                    // String方式传参处理
                    strings = (String)data;
                    strings = Stringer.nullToEmpty(strings);
                    ByteArrayEntity reqEntity = new ByteArrayEntity(strings.getBytes(encoding));
                    reqEntity.setContentEncoding(encoding);
                    httpPost.setEntity(reqEntity);
                }
            }

            httpPost.setConfig(defaultRequestConfig);

            httpHost = new HttpHost(_url.getHost(),_url.getPort());  
            response = httpClient.execute(httpHost,httpPost);

            if(!Stringer.isNullOrEmpty(response)){
                log.info("2--HttpClient response  => "+response);
                log.info("3--HttpClient StatusCode  => "+response.getStatusLine().getStatusCode());
                /*if (response.getStatusLine().getStatusCode() != 200) {
                    return null;
                }*/
                String locationUrl=response.getLastHeader("location").getValue();
                log.info("HttpClient locationUrl  => "+locationUrl);
                log.info("4--HttpClient StatusCode  => "+response.getStatusLine().getStatusCode());

                if (response.getStatusLine().getStatusCode() == 302) {
                    Header header = response.getFirstHeader("location"); // 跳转的目标地址是在 HTTP-HEAD上
                    String newuri = header.getValue(); // 这就是跳转后的地址,再向这个地址发出新申请
                    System.out.println(newuri);

                    httpPost = new HttpPost(newuri);
                    httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded");


                    response = httpClient.execute(httpHost,httpPost);
                    int code = response.getStatusLine().getStatusCode();
                    locationUrl=response.getLastHeader("location").getValue();
                    log.info("5--HttpClient new Code  => "+code);
                    log.info("6--HttpClient locationUrl  => "+locationUrl);
                }
                responseEntity = new StringBuilder();
                responseEntity.append(EntityUtils.toString(response.getEntity(), encoding));
                return responseEntity;
            }

        return null;
    }

curl命令样例:

curl -k -d “client_id=10333&user=test” “https://bbs.csdn.net

原因:
官方文档中对HttpHost(String hostname,int port)方法的说明:

HttpHost
public HttpHost(String hostname,
int port)
Constructor for HttpHost.
Parameters:
hostname - the hostname (IP or DNS name). Can be null.
port - the port. Value -1 can be used to set default protocol port

可见 如果不在方法里面增加协议会带上默认协议http
需要使用带协议的方法:HttpHost(String hostname, int port, Protocol protocol) ,并指定协议为https

httpHost = new HttpHost(_url.getHost(),_url.getPort(),“https”);

至此问题解决!

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
JAVA开发工程师
手记
粉丝
1
获赞与收藏
7

关注作者,订阅最新文章

阅读免费教程

感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消