I\'m trying to communicate with https server having self-signed certificate.
I can do this from .NET application (using ServicePointManager.ServerCertificateValidati
This is happened due to self signed certificate used for encryption.Due to security reasons in android it demands C A authority signed or trusted certificates
use this plugin to avoid this.
https://www.npmjs.com/package/react-native-fetch-blob
RNFetchBlob.config({
trusty : true
})
.then('GET', 'https://xxxxx.com')
.then((resp) => {
// ...
})
Add config trusty as true to trust the certificate when you POST or GET API's