我正在使用OkHttp库来从我的应用程序向facebook api发出请求,但是我需要在代理网络上工作,实例化OkHttpClient()
并调用OkHttpClient.newCall(request).execute()
,但超时消息,因为我的代理停止了请求。
经过一番研究,我发现了以下solution:
int proxyPort = 8080;
String proxyHost = "proxyHost";
final String username = "username";
final String password = "password";
Authenticator proxyAuthenticator = new Authenticator() {
@Override public Request authenticate(Route route, Response response) throws IOException {
String credential = Credentials.basic(username, password);
return response.request().newBuilder()
.header("Proxy-Authorization", credential)
.build();
}
};
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(60, TimeUnit.SECONDS)
.writeTimeout(60, TimeUnit.SECONDS)
.readTimeout(60, TimeUnit.SECONDS)
.proxy(new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort)))
.proxyAuthenticator(proxyAuthenticator)
.build();
这很好用,但是我不想将代理信息保留在代码或应用程序中。
是否可以将代理配置为环境变量或OkHttp能够完成请求的某些外部文件中?
答案 0 :(得分:1)
我将使用系统环境变量来存储此敏感配置。如果没有属性文件,则最好使用系统变量。
您可以为此更新验证方法:
Authenticator proxyAuthenticator = new Authenticator() {
@Override public Request authenticate(Route route, Response response) throws
IOException {
String username = System.getenv("PROXY_USERNAME");
String password = System.getenv("PROXY_PASSWORD");
if (username == null || username.isEmpty() || password == null || password.isEmpty() )
throw new IllegalStateException("Proxy information is not defined in system variables");
String credential = Credentials.basic(username, password);
return response.request().newBuilder()
.header("Proxy-Authorization", credential)
.build();
}
};
并删除
final String username = "username";
final String password = "password";
类字段。
现在,当您运行应用程序时,可以在计算机上定义变量,或者更好地将它们作为参数传递给Java应用程序。例如:
java -jar -DPROXY_USERNAME=userName -DPROXY_PASSWORD=password yourJar.jar