android Trust anchor for certification path not found

javax.net.ssl.SSLHandshakeException: 
java.security.cert.CertPathValidatorException: 
Trust anchor for certification path not found. 

안드로이드에서 jsoup 을 이용하여 웹 크롤링 중 위와 같은 에러가 떴다 
대체 어느 에러인가 구글링 하던 중 https://twinw.tistory.com/46 에서 해결책을 확인하였다.

SSLConnect.class 를 만들고 jsoup 을 호출하기 전 아래와 같이 작성해주니 문제가 해결됐다.

SSLConnection sslConnection = new SSLConnection(); 
sslConnection.postHttps(url, 1000, 1000);

댓글