API Calls in React Native

Updated 6 March 2021

Save

API Calls in ReactNative

In React-native we don’t need to import any third-party library to make API network calls like Retrofit or Volly. In React-native we use fetch() method to perform network calls operations.

API Calls in React Native using Fetch():-

The Fetch API provides a JavaScript interface for accessing and manipulating parts of the HTTP pipeline, such as requests and responses. It also provides a global method fetch() that provides an easy, logical way to fetch resources asynchronously across the network.

 Let’s explain it with code:-

In the fetch() method we have two parameters.

1- API URL:- In my case “https://mywebsite.com/endpoint/” this URL is gonna be my API URL.

2- JSON Object:-  After the API URL we have a JSON object which contains several keys like method, headers, and body.

NOTE–> Please make sure that the key’s name must be the same as it is written in the code. Because it is predefined keys.

method:-  At Method key, you need to define that which kind of API you are executing as  GET API, POST API or any other.

headers:- At headers key, you need to define your headers like in my case I am passing three headers Accept, Content-type, and CustomHeaders.

body:- At body key, you need to send the params in that key. Like I am hitting a POST request so it can contain params also so in that key put the JSON data that you want to Post.

After that, you need to call another method to get the response.

then():- We use then() method an call back. When we close the fetch() method brackets then we call then() method to get the response.

Let’s explain it with code:-

Now we got the response in responseJson.

API Calls in React Native using fetch() is completed now. I hope it is helpful to you.

 

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home