51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

查看: 1080|回复: 2
打印 上一主题 下一主题

[资料] HttpClient request with authentication

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2018-4-30 16:24:04 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
        private static final CloseableHttpClient httpclient = HttpClients.createDefault();
       
          public static String sendPost(String url, Map<String, String> map) {
                List<NameValuePair> formparams = new ArrayList<NameValuePair>();
                for (Map.Entry<String, String> entry : map.entrySet()) {
                    formparams.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
                }
                UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams, Consts.UTF_8);
                HttpPost httppost = new HttpPost(url);
                httppost.setEntity(entity);
                CloseableHttpResponse response = null;
                try {
                    response = httpclient.execute(httppost);
                } catch (IOException e) {
                    e.printStackTrace();
                }
                
                if (null==response)
                        return "";
                HttpEntity entity1 = response.getEntity();
                String result = null;
                try {
                    result = EntityUtils.toString(entity1);
                } catch (ParseException | IOException e) {
                    e.printStackTrace();
                }
                return result;
           }
          
          public static String sendPostWithAuth(String url, String authInfo) {
                   String username="test";
                   String password="test123";
                  
                   CloseableHttpClient httpclient = HttpClients.createDefault();
           String encoding = Base64.getEncoder().encodeToString((username+":"+ password).getBytes());
           System.out.println(encoding);

               HttpGet httpget = new HttpGet(url);
               httpget.addHeader("Authorization", "Basic " + encoding);
                CloseableHttpResponse response = null;
                try {
                    response = httpclient.execute(httpget);  
                    int status = response.getStatusLine().getStatusCode();  
                    System.out.println(String.valueOf(status));
                   
                } catch (IOException e) {
                    e.printStackTrace();
                }
                
                HttpEntity entity1 = response.getEntity();
                String result = null;
                try {
                    result = EntityUtils.toString(entity1);
                    System.out.println(result);
                } catch (ParseException | IOException e) {
                    e.printStackTrace();
                }
                return result;
           }
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
 楼主| 发表于 2018-4-30 16:26:55 | 只看该作者
Get reference from other sources,  and it is proved to be very helpful, so post this so that more persons could check this.
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-4-25 16:57 , Processed in 0.066583 second(s), 22 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表