← HTTPS 配置 | 代理配置(English) | 调试 →
优先级: Client > 环境变量
支持以下环境变量:
- HTTP_PROXY或者http_proxy
- HTTPS_PROXY
- NO_PROXY
// Client 代理配置
HttpClientConfig clientConfig = HttpClientConfig.getDefault();
// 设置HTTP代理
clientConfig.setHttpProxy("http://127.0.0.1:9898");
// 设置HTTPS代理
clientConfig.setHttpsProxy("http://user:[email protected]:8989");
// 设置忽略代理地址列表
clientConfig.setNoProxy("127.0.0.1,localhost");
IClientProfile profile = DefaultProfile.getProfile(regionId, accesskeyId, accesskeySecret);
profile.setHttpClientConfig(clientConfig);
DefaultAcsClient client = new DefaultAcsClient(profile);
← Https 配置 | 代理配置(English) | 调试 →