React-native,AxiosError:Android上的网络错误,但在IOS上工作正常

qltillow  于 2023-04-30  发布在  iOS
关注(0)|答案(1)|浏览(143)

我在Android上面临AxiosError: Network Error问题,但在iOS上运行良好。error-- [AxiosError:网络错误]
"axios": "^1.3.4",
"react-native": "0.68.2",
但在 Postman 身上却奏效了。

const URL ="https://helpdesk.plymouthplace.us"

axios.get(URL + "/api/v1/helpdesk/url",{params:{ 'url': URL}})
 .then((response) => {
  console.log('response--', response.data)
  }).catch((error) => {
  console.log('error--', error)
  });
gxwragnw

gxwragnw1#

我在API请求中发现了SSL证书问题(* SSL证书问题:无法获取本地颁发者证书

  • 关闭连接12)但在iOS中没有SSL证书问题和API调用响应成功等问题。

任何人都有一些关于它的想法。

相关问题