配置 org.apache.http.impl.client.DefaultHttpClient 使用默认的 Authenticator
我正在尝试通过具有基本身份验证的代理使用 DefaultHttpClient。将客户端设置为使用默认的 ProxySelector(某种程度上)是直接的:
DefaultHttpClient client = new DefaultHttpClient();
client.setRoutePlanner(new ProxySelectorRoutePlanner(
client.getConnectionManager().getSchemeRegistry(),
null));
但是,这不会将客户端配置为使用默认的 Authenticator。有没有办法做到这一点,或者我是否被迫显式设置身份验证?
I am attempting to use DefaultHttpClient over a proxy with basic authentication. Setting the client to use the default ProxySelector is (sort of) straight forward:
DefaultHttpClient client = new DefaultHttpClient();
client.setRoutePlanner(new ProxySelectorRoutePlanner(
client.getConnectionManager().getSchemeRegistry(),
null));
However, this doesn't configure the client to use the default Authenticator. Is there a way to do this, or am I forced to setup the authentication explicitly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实现自定义
CredentialsProvider
,将用户凭据的解析委托给默认的 AuthenticatorYou can implement a custom
CredentialsProvider
that delegates resolution of user credentials to the default Authenticator