volley SSL 사용시 신뢰받지 않는 인증서 예외 처리
https 통신에서 신뢰받지 않는 인증서일경우 서버 요청 실패로 발생되는 문제를 임시로 처리하기 위한 방법으로 모든 인증서를 수용하는 방법이 있다. 임시방편이며 서버에 신뢰 받는 인증서를 교체를 하는것을 추천한다. public static class NukeSSLCerts { protected static final String TAG = "NukeSSLCerts"; public static void nuke() { try { TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() { public X509Certificate[] getAcceptedIssuers() { X509Certificate[] myTrustedAncho..