Last active
September 8, 2021 14:06
-
-
Save ecdundar/f9207775e4cf22e939f77c5307265529 to your computer and use it in GitHub Desktop.
React Native HTTPS Certificate Error Problem - Trust All Certificates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.myapplication.extensions; | |
import android.util.Log; | |
import com.facebook.react.modules.network.OkHttpClientFactory; | |
import com.facebook.react.modules.network.OkHttpClientProvider; | |
import com.facebook.react.modules.network.ReactCookieJarContainer; | |
import java.security.SecureRandom; | |
import java.security.cert.CertificateException; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.concurrent.TimeUnit; | |
import java.net.*; | |
import java.io.*; | |
import javax.net.ssl.HostnameVerifier; | |
import javax.net.ssl.HttpsURLConnection; | |
import javax.net.ssl.SSLContext; | |
import javax.net.ssl.SSLSession; | |
import javax.net.ssl.SSLSocketFactory; | |
import javax.net.ssl.TrustManager; | |
import javax.net.ssl.X509TrustManager; | |
import okhttp3.OkHttpClient; | |
import okhttp3.*; | |
/* Thanks to @samie820 - https://github.com/facebook/react-native/issues/20488 */ | |
public class CustomClientFactory implements OkHttpClientFactory { | |
private static final String TAG = "OkHttpClientFactory"; | |
@Override | |
public OkHttpClient createNewNetworkModuleClient() { | |
try { | |
// Create a trust manager that does not validate certificate chains | |
final TrustManager[] trustAllCerts = new TrustManager[]{ | |
new X509TrustManager() { | |
@Override | |
public void checkClientTrusted(java.security.cert.X509Certificate[] chain, String authType) throws CertificateException { | |
Log.e("ECD","Burada 2"); | |
} | |
@Override | |
public void checkServerTrusted(java.security.cert.X509Certificate[] chain, String authType) throws CertificateException { | |
Log.e("ECD","Burada 1"); | |
} | |
@Override | |
public java.security.cert.X509Certificate[] getAcceptedIssuers() { | |
Log.e("ECD","Burada 3"); | |
return new java.security.cert.X509Certificate[]{}; | |
} | |
} | |
}; | |
// Install the all-trusting trust manager | |
final SSLContext sslContext = SSLContext.getInstance("SSL"); | |
sslContext.init(null, trustAllCerts, new java.security.SecureRandom()); | |
// Create an ssl socket factory with our all-trusting manager | |
final SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory(); | |
SSLContext sc = SSLContext.getInstance("SSL"); | |
sc.init(null, trustAllCerts, new SecureRandom()); | |
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory()); | |
HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() { | |
@Override | |
public boolean verify(String arg0, SSLSession arg1) { | |
return true; | |
} | |
}); | |
OkHttpClient.Builder builder = new OkHttpClient.Builder() | |
.connectTimeout(0, TimeUnit.MILLISECONDS).readTimeout(0, TimeUnit.MILLISECONDS) | |
.writeTimeout(0, TimeUnit.MILLISECONDS).cookieJar(new ReactCookieJarContainer()); | |
builder.sslSocketFactory(sslSocketFactory, (X509TrustManager) trustAllCerts[0]); | |
builder.hostnameVerifier(new HostnameVerifier() { | |
@Override | |
public boolean verify(String hostname, SSLSession session) { | |
return true; | |
} | |
}); | |
OkHttpClient okHttpClient = builder.build(); | |
return okHttpClient; | |
} catch (Exception e) { | |
Log.e(TAG, e.getMessage()); | |
throw new RuntimeException(e); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.myapplication; | |
import android.app.Application; | |
import com.facebook.react.ReactApplication; | |
import com.facebook.react.modules.network.OkHttpClientProvider; | |
import com.myapplication.extensions.CustomClientFactory; | |
import com.myapplication.extensions.SSLCertificateHandler; | |
import com.oblador.vectoricons.VectorIconsPackage; | |
import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; | |
import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; | |
import com.facebook.react.ReactNativeHost; | |
import com.facebook.react.ReactPackage; | |
import com.facebook.react.shell.MainReactPackage; | |
import com.facebook.soloader.SoLoader; | |
import com.oblador.vectoricons.VectorIconsPackage; | |
import java.util.Arrays; | |
import java.util.List; | |
public class MainApplication extends Application implements ReactApplication { | |
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { | |
@Override | |
public boolean getUseDeveloperSupport() { | |
return BuildConfig.DEBUG; | |
} | |
@Override | |
protected List<ReactPackage> getPackages() { | |
return Arrays.<ReactPackage>asList( | |
new MainReactPackage(), | |
new VectorIconsPackage(), | |
new RNGestureHandlerPackage() | |
); | |
} | |
@Override | |
protected String getJSMainModuleName() { | |
return "index"; | |
} | |
}; | |
@Override | |
public ReactNativeHost getReactNativeHost() { | |
return mReactNativeHost; | |
} | |
@Override | |
public void onCreate() { | |
super.onCreate(); | |
SoLoader.init(this, /* native exopackage */ false); | |
/* Add this row for https errors */ | |
OkHttpClientProvider.setOkHttpClientFactory(new CustomClientFactory()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment