Hello Friends 👋,
Welcome To Infinitbility! ❤️
Getting error TypeError Network request failed
in android, ios, or with SSL server then read all below cases.
In this article, we solve 3 cases of network request failed issue in react-native but your condition does not match with the below mention cases then comment below on the article.
Case 1: http url not working in android
if you are trying to call HTTP ( unsecured ) url then you have to add usesCleartextTraffic
to your AndroidManifest.xml
.
AndroidManifest.xml
<application
...
android:usesCleartextTraffic="true" <!-- add this line -->
>
...
</application>
***Trying to call localhost api with diffrent port? ***
Replace localhost with your ipaddress v4
To know your ipv4
- For windows users
ipconfig
- For Mac or linux users
ifconfig
HTTP URL not working in ios
If you are trying to call an unsecure url from reac native ios.
you have to do below changes on your info.plist to allow unsecure url
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
HTTPS URL not working in android react native fetch
You are trying to call HTTP URL from react-native fetch but getting Network request failed to issue or in ios working fine then below the solution for you only.
This has to do with Android not trusting my SSL certificate. Apparently Android has some additional trust requirements on top of what web browsers require.
After figuring that out, the root cause ended up being my SSL Certificate uploaded to AWS didn’t have the correct intermediate cert which was fine in chrome, but not in android.
check your SSL certificate set up perfectly or not on https://www.digicert.com/help/.
when you get an error on DigiCert assign a task to your server administrator 😁.
Thanks for reading…
More From React Native Tutorial
Basics
1. Introduction To React Native
2. React Native Environment Setup using expo
3. React Native Environment Setup for windows
4. React Native Environment setup on Mac OS
5. React Native Environment setup on linux
6. React Native Project Structure
Advances
4. React Native DatepickerAndroid
5. React native ScrollView scroll to position
6. How to align icon with text in react native
8. React Native Firebase Crashlytics
Error & Issue Solution
1. Task :app:transformDexArchiveWithDexMergerForDebug FAILED In React Native
2. Expiring Daemon because JVM heap space is exhausted In React Native
3. Task :app:transformNativeLibsWithMergeJniLibsForDebug FAILED In React Native
5. App crashed immediately after install react native video or track player
6. how to delete SQLite database in android react native
7. React native material dropdown twice click issue
8. How to get the current route in react-navigation?
9. how to disable drawer on the drawer navigation screen?
10. Image not showing in ios 14 react native
11. React Native image picker launchimagelibrary on second time issue
12. how to open any link from react native render Html