본문 바로가기

Programming/과거포스팅

No subject alternative DNS name matching android.apis.google.com found.

 C2DM연동시

위의 error code가 발생하면
다음 class 추가한다.
private static class FakeHostnameVerifier implements HostnameVerifier {
public boolean verify(String hostname, SSLSession session) {
return true;
}
}




....
openConnection() 을 하기 전에

HttpsURLConnection.setDefaultHostnameVerifier(new FakeHostnameVerifier()); 추가한다.