当前位置:   article > 正文

java添加HTTP基本认证(Basic Authentication)_java发送 http get 请求并包含 basic auth 验证

java发送 http get 请求并包含 basic auth 验证

关于HTTP基本认证(Basic Authentication)的原理请参考:http://blog.csdn.net/kkdelta/article/details/28419625

如果某接口采用Http Basic Authentication基本认证,一般由服务方提供用户名密码,当需要访问这个接口时,我们需要在代码中加入认证。

//访问前添加认证(MyAuthenticator是自定义内部类)
Authenticator.setDefault(new MyAuthenticator());

URL getUrl =new URL(newUrl);

// 根据拼凑的URL,打开连接,URL.openConnection函数会根据URL的类型,
// 返回不同的URLConnection子类的对象,这里URL是一个http,因此实际返回的是HttpURLConnection
        HttpURLConnection connection =(HttpURLConnection) getUrl.openConnection();

        connection.connect();
        ……
        ……
        ……
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

MyAuthenticator内部类:

static class MyAuthenticator extends Authenticator{

        public PasswordAuthentication getPasswordAuthentication(){

            return (new PasswordAuthentication(username,password.toCharArray()));
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/615347
推荐阅读
相关标签
  

闽ICP备14008679号