0%

OkHttp中使用SOCKS5代理用户名密码校验问题

最近在项目上遇到okhttp请求需要使用socks5代理的情况,但是不知道如何设置用户名密码,找了很多资料终于发现了方法,现提供代码仅供参考

代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* @Title: ProxyTest.java
* @Package
* @Description: TODO(用一句话描述该文件做什么)
* @author Wild Coder
* @email 1023400273@qq.com
* @date 2016年4月15日 上午11:44:57
* @version V1.0
*/
public class ProxyTest
{
public static void main(String[] args) throws Exception
{
Proxy proxy = new Proxy(Proxy.Type.SOCKS, new InetSocketAddress("127.0.0.1", 1081));//设置socks代理服务器ip端口

java.net.Authenticator.setDefault(new java.net.Authenticator()//由于okhttp好像没有提供socks设置Authenticator用户名密码接口,因此设置一个全局的Authenticator
{
private PasswordAuthentication authentication = new PasswordAuthentication("username", "password".toCharArray());

@Override
protected PasswordAuthentication getPasswordAuthentication()
{
return authentication;
}
});

OkHttpClient client = new OkHttpClient.Builder().connectTimeout(150, TimeUnit.SECONDS).proxy(proxy).build();//创建OkHttpClient,并且设置超时时间和代理

Request request = new Request.Builder().url("http://www.whatismyip.com.tw").get().build();//查询本机ip地址请求
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
}
谢谢您的打赏,我的大英雄 ^_^
Thank you for your generosity, my big hero ^_^

更多内容请关注公众号「西小玛」