gpt4 book ai didi

reactjs - https 在 React Native axios 中未定义

转载 作者:行者123 更新时间:2023-12-03 13:53:45 25 4
gpt4 key购买 nike

我已经使用 axios 来 react native 应用程序,但在实现 https.agent 时,它显示 https 未定义。如何解决这个问题?
我的代码

const instance = axios.create({
httpsAgent: new https.Agent({
rejectUnauthorized: false
})
});

instance.get('https://example.com');

// At request level
const agent = new https.Agent({
rejectUnauthorized: false
});
axios.post('/practz/login', {
"username" :"orgadmin1@example.com",
"password":"exam",
"appId":"AABBCD",
"domainName":"example.com",
httpsAgent: agent
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});

最佳答案

这是 Android 9 或 10 的问题,您必须在 Apache 配置中添加 SSLCertificateChainFile。

SSLCertificateChainFile“/opt/bitnami/apache2/conf/server-ca.crt”

然后就可以正常工作了

关于reactjs - https 在 React Native axios 中未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51146430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com