SSL Pinning
iOS
Android
Configuring SSL Pinning
Single SSL Pin
val netmeraConfiguration = RNNetmeraConfiguration.Builder()
.huaweiSenderId(BuildConfig.HMS_SENDER_ID)
.firebaseSenderId(BuildConfig.GCM_SENDER_ID)
.apiKey(apiKey)
.baseUrl(baseUrl)
.logging(true)
// Set SSL pin keys
.sslPinKeys(
// Replace with the correct sha256 hash
"sha256/T9g7qeNuY3SHc4tWSlqoHwWb+0Y8whUYn0uuAB3CzHM="
).build(this)
RNNetmera.initNetmera(netmeraConfiguration)Multiple SSL Pins
Handling SSL Pinning Errors


Last updated
Was this helpful?