React-native:自签名认证实现



你知道如何正确地工作取回具有自签名证书在react-native应用中?

经典取回:

TypeError: Request failed

使用run -fetch-blob fetch:

[Error: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.]

一个有效的解决方案是忽略认证,但它当然不安全。

此代码位于index.js文件应用程序上。

const Fetch = RNFetchBlob.polyfill.Fetch
window.fetch = new Fetch({
trusty: true
}).build()

我查看了一个不同的帖子!

我使用react-native-ssl-pin,它可以正常工作证书钉住.

真正的问题是由于服务器证书安装错误。

相关内容

  • 没有找到相关文章

最新更新