Apache Http

1 min read

Dependency

Gradle:

  compile 'org.apache.httpcomponents:httpclient:4.5.6'
  compile 'org.apache.httpcomponents:httpcore:4.4.10'

Proxy

HttpClient httpclient = new HttpClient();
httpclient.getHostConfiguration().setProxy("Host", "Port");
httpclient.getState().setProxyCredentials(
    new AuthScope("Host", "Port"),
    new UsernamePasswordCredentials("ID", "Password")
);

문제 해결

Illegal character in query at index 오류를 방지하기 위해서 주소를 인코딩 해야 한다.

try {
    String simpleUrl = "http://www.abc.com/?email=abc&pass=efg";
    String encodedurl = URLEncoder.encode(url,"UTF-8");
} catch (UnsupportedEncodingException e) {
    e.printStackTrace();
}

© 2023 Raegon Kim