您知道在 react-native 应用程序中使用自签名认证的fetch 调用如何正常工作吗?
使用经典的 fetch :
TypeError: Request failed
使用rn-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()
我检查了一个像这样的不同帖子!